c#调用sqlite总结

一、准备工作

下载System.Data.SQLite.dll,网址 https://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

如下图所示  以32bit ,net4.6为例:有两个版本

c#调用sqlite总结_第1张图片

1.sqlite-netFx46-binary-Win32-2015-1.0.110.0.zip解压后要用SQLite.Interop.dll 和System.Data.SQLite.dll

c#调用sqlite总结_第2张图片

2.sqlite-netFx46-binary-bundle-Win32-2015-1.0.110.0.zip解压后只用System.Data.SQLite.dll 

c#调用sqlite总结_第3张图片

二、新建工程添加System.Data.SQLite.dll 

1.项目右击—>>添加—>>引用—>>浏览—>>选择System.Data.SQLite.dll—>>确定

注意:如果添加的是sqlite-netFx46-binary-x64-2015-1.0.110.0.zip解压后System.Data.SQLite.dll,还要将SQLite.Interop.dll复制到编译生成的exe目录下,该dll只能复制,不能添加引用!!!

c#调用sqlite总结_第4张图片

例程:https://download.csdn.net/download/qq_31868891/11451458

你可能感兴趣的:(c#,sqlite,c#,sqlite)