McBainUK
McBainUK

Reputation: 432

Simple access to a sql .db3 file using .NET - how?

Lost in the talk of ADO, LinQ and System.Data.SQLite.

What's the easiest way of accessing (for read & write) a SQL (.db3) database file using .NET. Are we really talking about writing SQL queries or is there something higher level that is provided by MS or similar.

Upvotes: 1

Views: 4043

Answers (2)

Nathan Ridley
Nathan Ridley

Reputation: 34396

go here:

https://system.data.sqlite.org

You will absolutely not find a better, more complete or more polished solution. And it's free, public domain source code too.

Upvotes: 2

Matt Briggs
Matt Briggs

Reputation: 42168

System.Data.SQLite is the ADO.net adapter for SQLite (so those two are the same). LINQ2SQL is a data layer generator, but it only works for SQL Server.

Upvotes: 0

Related Questions