一,引用System.Data.SQLite.dll类库
1,百度云下载连接:http://pan.baidu.com/s/1c1Ozndm
2,项目引用此文件。
二,SQLiteHelp辅助类
using System.Data;
using System.Data.SQLite;
namespace Sqlite
{
public class SQLiteHelper
{
public SQLiteConnection conn;
public SQLiteHelper(string connStr)
{
conn = new SQLiteConnection(connStr);
}
public SQLiteHelper()
{
[conn=...;]
}