SQLite C# .net 开发所需要的dll文件

时间:2016-12-25 10:20:08
【文件属性】:
文件名称:SQLite C# .net 开发所需要的dll文件
文件大小:4.79MB
文件格式:RAR
更新时间:2016-12-25 10:20:08
SQLite C# .net SQLite开发包 用 C# .net访问SQLite所需要的动态链接库文件和安装包。 包括System.Data.SQLite.dll、SQLite.Interop.dll和SQLite.Designer.dll三个动态链接库和原安装包。保护 SQLiteConnection SQLiteCommand SQLiteDataAdapter等完全符合.net规则的数据库连接方法。 使用方法举例 using (SQLiteConnection connection = CreateConnection1()) { DataSet ds = new DataSet(); try { connection.Open(); SQLiteDataAdapter command = new SQLiteDataAdapter(strSQL, connection); command.Fill(ds, "ds"); command.Dispose(); return ds; } catch (SQLiteException ex) { throw ex; } finally { connection.Close(); } }
【文件预览】:
sqlite-netFx20-setup-x86-2005-1.0.89.0.exe
System.Data.SQLite.dll
SQLite.Interop.dll
适合.net 2.0 X86不适合X64更多说明请点开.txt
SQLite.Designer.dll

网友评论

  • 感觉不错,学习了。
  • 不错,可以,没用上,自己参考写了一个。
  • 文件可用,注意版本,最优解决方案还是nuget
  • 还可以,开始引用后依旧报错,其实是自己忘安装了nuget的安装包