码迷,mamicode.com
首页 > 数据库 > 详细

C# 操作 sqlite

时间:2015-01-04 14:52:27      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

1、下载sqlite:http://system.data.sqlite.org/downloads/1.0.94.0/sqlite-netFx20-setup-bundle-x86-2005-1.0.94.0.exe

2、安装下载到的文件:sqlite-netFx20-setup-bundle-x86-2005-1.0.94.0.exe

3、右键C#项目属性:

技术分享

4、【应用程序】标签中的【目标框架】改成:.NET Framework 3.5

5、【生成】标签中的【目标平台】改成:x86

6、添加引用刚刚sqlite安装路径下的System.Data.SQLite.dll文件,默认路径为:C:\Program Files (x86)\System.Data.SQLite\2005\bin

7、引入命名空间:using System.Data.SQLite;

完成!

 

测试代码:SQLiteConnection.CreateFile("test.sqlite");

运行后,可找到项目文件夹的bin\Debug路径下,生成的test.sqlite数据库文件。

技术分享

 

C# 操作 sqlite

标签:

原文地址:http://www.cnblogs.com/fengrenyuan/p/4200877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!