Reputation: 432
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
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
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