C# SQLite基础工具类

目录

1、安装System.Data.SQLite工具包

2、创建数据库

3、数据库的连接与断开

4、执行一条SQL语句

5、批量执行sql语句

6、返回首行首列值

7、执行sql语句返回datatable


1、安装System.Data.SQLite工具包
2、创建数据库

/// <summary>

/// 数据库路径

/// </summary>

private string databasepath = Application.StartupPath + @"\DB\";

/// <summary>

/// 数据库名称

/// </summary>

private const string databasename = "AnDB.db";

/// <summary>

/// 创建数据库

/// </summary>

public void CreateDataBase()

{

try

{//判断数据库是否存在

if (!File.Exists(databasepath + databasename))

{

if (!Directory.Exists(databasepath))//判断文件夹是否存在不存在则创建

Directory.CreateDirectory(databasepath);

SQLiteConnection.CreateFile(databasepath + databasename);

}

}

catch

{//异常处理

}

}

3、数据库的连接与断开

public string SQLiteConnectiongString = "Data Source =" + Application.StartupPath + @"\DB\AnDB.db" + ";Pooling = true; FailIfMissing = true";//连接字符串

public SQLiteConnection Conn = null;

public bool StarConn()//连接

{

try

{

Conn = new SQLiteConnection(SQLiteConnectiongString);

if (Conn.State != ConnectionState.Open)//判断数据库是否打开

{

Conn.Open();//建立连接

}

return Conn.State ==ConnectionState.Open;

}

catch (Exception)

{//异常处理

return false;

}

}

public void CloseConn()// 解除connection

{

if (Conn.State == ConnectionState.Open || Conn.State == ConnectionState.Broken)

Conn.Close();

}

4、执行一条SQL语句

public bool ExecuteSQL(string strsql) //执行一条SQL语句,实现数据库事务。

{

//创建MySqlCommand执行命令语句对象

using (SQLiteCommand cmd = new SQLiteCommand())//使用using语句,方便using语句中声明的对象自动被Dispose

{

if (Conn.State != ConnectionState.Open)

{

Conn.Open();

}

cmd.Connection = Conn; //MySqlCommand执行命令语句对象添加数据库连接对象

try

{

cmd.CommandType = CommandType.Text;

cmd.CommandText = strsql;

cmd.ExecuteNonQuery(); //执行非查询数据库操作

return true;

}

catch (Exception ex)

{//异常处理

return false;

}

}

}

5、批量执行sql语句

public bool BatchExecuteSQL(List<string> strsqllist)

{

if (strsqllist.Count == 0)

{

return false;

}

else

{ //创建MySqlCommand执行命令语句对象

using (SQLiteCommand cmd = new SQLiteCommand())//使用using语句,方便using语句中声明的对象自动被Dispose

{

if (Conn.State!=ConnectionState.Open) //判断是否有连接

{

Conn.Open();

}

SQLiteTransaction tx = Conn.BeginTransaction(IsolationLevel.ReadCommitted);//创建事务solationLevel.ReadCommitted

cmd.Transaction = tx; //MySqlCommand执行命令语句对象添加事务对象

cmd.Connection = Conn; //MySqlCommand执行命令语句对象添加数据库连接对象

try

{

for (int n = 0; n < strsqllist.Count; n++) //遍历SQL语句,依次执行

{

cmd.CommandType = CommandType.Text;

cmd.CommandText = strsqllist[n];

cmd.ExecuteNonQuery(); //执行非查询数据库操作

}

tx.Commit();//一次性提交事务

return true;

}

catch (Exception ex)

{

tx.Rollback();//异常处理

return false;

}

}

}

}

6、返回首行首列值

public int GetOnly(string strsql)//执行sql语句获取唯一值(总数,一列等)

{

try

{

if (Conn.State != ConnectionState.Open)

{

Conn.Open();

}

using (SQLiteCommand cmd = new SQLiteCommand(strsql, Conn))

{

return Convert.ToInt32(cmd.ExecuteScalar());

}

}

catch (Exception ex)

{

return -1;

}

}

7、执行sql语句返回datatable

public DataTable GetDataTable(string strsql)//, params SQLiteParameter[] commandParameters) //sql查询 ,返回datatable

{

DataTable dt = new DataTable();

if (Conn.State!=ConnectionState.Open) //数据库连接

{

Conn.Open();

}

try //在这里用一个try/catch结构执行sql文本命令/存储过程,因为如果这个方法产生一个异常我们要关闭连接,因为没有读取器存在

{

using (SQLiteDataAdapter adapter = new SQLiteDataAdapter(strsql, Conn))

{

adapter.Fill(dt); //将查询到数据填充到数据集

}

}

catch (Exception ex)

{//异常处理

}

return dt;

}

相关推荐
Acrelhuang3 分钟前
安科瑞5G基站直流叠光监控系统-安科瑞黄安南
大数据·数据库·数据仓库·物联网
YUJIANYUE18 分钟前
PHP将指定文件夹下多csv文件[即多表]导入到sqlite单文件
jvm·sqlite·php
十叶知秋1 小时前
【jmeter】jmeter的线程组功能的详细介绍
数据库·jmeter·性能测试
瓜牛_gn2 小时前
mysql特性
数据库·mysql
奶糖趣多多3 小时前
Redis知识点
数据库·redis·缓存
CoderIsArt4 小时前
Redis的三种模式:主从模式,哨兵与集群模式
数据库·redis·缓存
△曉風殘月〆4 小时前
WPF MVVM入门系列教程(二、依赖属性)
c#·wpf·mvvm
逐·風6 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
师太,答应老衲吧6 小时前
SQL实战训练之,力扣:2020. 无流量的帐户数(递归)
数据库·sql·leetcode
Channing Lewis7 小时前
salesforce case可以新建一个roll up 字段,统计出这个case下的email数量吗
数据库·salesforce