I'd sort of like to use SQLite from within C#.Net, but I can't seem to find an appropriate library. Is there one? An official one? Are there other ways to use SQLite than with a wrapper?
|
|
From http://system.data.sqlite.org:
"System.Data.SQLite is the original SQLite database engine and a complete ADO.NET 2.0 provider all rolled into a single mixed mode assembly. It is a complete drop-in replacement for the original sqlite3.dll (you can even rename it to sqlite3.dll). Unlike normal mixed assemblies, it has no linker dependency on the .NET runtime so it can be distributed independently of .NET." It even supports mono. |
|||||||||||||||||
|
|
|
|||
|
|
|
There's also now this option: http://code.google.com/p/csharp-sqlite/ - a complete port of SQLite to C#. |
||||
|
|
|
The folks from sqlite.org have taken over the development of the ADO.NET provider: From their homepage:
The complete list of features can be found at on their wiki. Highlights include
Released DLLs can be downloaded directly from the site. |
|||||
|
|
|
I'd definitely go with System.Data.SQLite (as previously mentioned: http://sqlite.phxsoftware.com/) It is coherent with ADO.NET (System.Data.*), and is compiled into a single DLL. No sqlite3.dll - because the C code of SQLite is embedded within System.Data.SQLite.dll. A bit of managed C++ magic. |
||||
|
|
|
Mono comes with a wrapper. https://github.com/mono/mono/tree/master/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0 gives code to wrap the actual SQLite dll ( http://www.sqlite.org/sqlite-shell-win32-x86-3071300.zip found on the download page http://www.sqlite.org/download.html/ ) in a .net friendly way. It works on Linux or Windows. This seems the thinnest of all worlds, minimizing your dependence on third party libraries. If I had to do this project from scratch, this is the way I would do it. |
||||
|
|
|
Version 1.2 of Monotouch includes support for System.Data. You can find more details here: http://monotouch.net/Documentation/System.Data But basically it allows you to use the usual ADO .NET patterns with sqlite. |
||||
|
|
|
http://www.devart.com/dotconnect/sqlite/ dotConnect for SQLite is an enhanced data provider for SQLite that builds on ADO.NET technology to present a complete solution for developing SQLite-based database applications. As a part of the Devart database application development framework, dotConnect for SQLite offers both high performance native connectivity to the SQLite database and a number of innovative development tools and technologies. dotConnect for SQLite introduces new approaches for designing application architecture, boosts productivity, and leverages database application implementation. I use the standard version,it works perfect :) |
||||
|
|
|
A barebones wrapper of the functions as provided by the sqlite library. Latest version supports functions provided sqlite library 3.7.10 |
||||
|
|