Is there a .NET/C# wrapper for SQLite?

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 https://system.data.sqlite.org:

System.Data.SQLite is an ADO.NET adapter for SQLite.

System.Data.SQLite was started by Robert Simpson. Robert still has commit privileges on this repository but is no longer an active contributor. Development and maintenance work is now mostly performed by the SQLite Development Team. The SQLite team is committed to supporting System.Data.SQLite long-term.

"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.


Here are the ones I can find:

  • managed-sqlite
  • SQLite.NET wrapper
  • System.Data.SQLite
  • Sources:

  • sqlite.org
  • other posters

  • 现在也有这个选项:http://code.google.com/p/csharp-sqlite/ - C#的SQLite完整端口。

    链接地址: http://www.djcxy.com/p/64780.html

    上一篇: 对于C#和C ++项目使用相同的.proto文件

    下一篇: 是否有SQLite的.NET / C#包装?