System.Data.SQLite.dll下载地址

http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

选择.netFrawork版本

x64\SQLite.Interop.dll 目录

x86\SQLite.Interop.dll 目录

sqlite3.dll

System.Data.SQLite.dll

 

System.Data.SQLite.dll 添加引用到 项目里

x64和x86目录 拷贝到 bin 目录下

引用 ADP.DBHelper.dll

private    static string path = AppDomain.CurrentDomain.BaseDirectory + @"DB\SCDB.db";
public  static string ConnectionString= "Data Source=" + path  + ";Version=3;";
public   static string ProviderName = "System.Data.SQLite";

在Web.config app.config文件添加

<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>
</system.data>

 

SQLite GUI管理工具

sqliteStudio(20M)

http://sqlitestudio.pl/?act=about

http://www.yunqa.de/delphi/products/sqlitespy/index

SQLite Admin 免费

http://sqliteadmin.orbmu2k.de/

相关文章:

  • 2021-08-03
  • 2021-04-10
  • 2021-09-21
  • 2021-09-30
  • 2021-09-17
  • 2021-08-21
  • 2021-11-27
猜你喜欢
  • 2021-09-07
  • 2021-10-19
  • 2021-12-06
  • 2022-01-08
  • 2021-09-19
  • 2021-12-05
  • 2021-08-06
  • 2021-12-14
相关资源
相似解决方案