System.Data.SQLite

作者:追风剑情 发布于:2018-4-26 14:40 分类:C#

sqlite教程 https://www.runoob.com/sqlite/sqlite-tutorial.html

1. 下载System.Data.SQLite.dll并添加到项目中

下载地址: http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

带bundle的为混合编译(同时支持x86和x64),只需在项目中引用System.Data.SQLite.dll动态库即可。

22222.jpg3333.jpg

示例


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Reflection;
  7. using System.Data;
  8. using System.Data.SQLite;
  9.  
  10. namespace SqliteTest
  11. {
  12. public class SqliteHelper
  13. {
  14. private SQLiteConnection dbConnection;
  15. private SQLiteCommand dbCommand;
  16. private SQLiteDataReader dataReader;
  17.  
  18. /// <summary>
  19. /// 连接数据库
  20. /// </summary>
  21. /// <param name="connectionString">例如: "data source=mydb.db"</param>
  22. public bool Connect(string db_path)
  23. {
  24. try
  25. {
  26. //如果db文件不存在,会自动创建一个新的db文件
  27. string connectionString = string.Format("data source={0}", db_path);
  28. dbConnection = new SQLiteConnection(connectionString);
  29. dbConnection.Open();
  30. return true;
  31. }
  32. catch (Exception e)
  33. {
  34. Log(e.ToString());
  35. }
  36. return false;
  37. }
  38.  
  39. //执行SQL:查询sqlite版本号
  40. public string SQLiteVersion()
  41. {
  42. string version = "0.0.0";
  43. SQLiteDataReader dataReader = ExecuteQuery("SELECT sqlite_version() AS 'SQLite Version'");
  44. if (dataReader == null)
  45. return version;
  46. if (!dataReader.HasRows)
  47. return version;
  48. if (!dataReader.Read())
  49. return version;
  50. if (dataReader.IsDBNull(0))
  51. return version;
  52. version = dataReader.GetString(0);
  53. dataReader.Close();
  54. return version;
  55. }
  56.  
  57. //执行SQL: 查
  58. public SQLiteDataReader ExecuteQuery(string sql)
  59. {
  60. try
  61. {
  62. dbCommand = dbConnection.CreateCommand();
  63. dbCommand.CommandText = sql;
  64. dataReader = dbCommand.ExecuteReader();
  65. }
  66. catch (Exception e)
  67. {
  68. Log(e.Message);
  69. }
  70.  
  71. return dataReader;
  72. }
  73.  
  74. //执行SQL:增、删、改操作
  75. public int ExecuteNonQuery(string sql)
  76. {
  77. int result_code = -1;
  78. try
  79. {
  80. dbCommand = dbConnection.CreateCommand();
  81. dbCommand.CommandText = sql;
  82. result_code = dbCommand.ExecuteNonQuery();
  83. }
  84. catch (Exception e)
  85. {
  86. Log(e.Message);
  87. }
  88.  
  89. return result_code;
  90. }
  91.  
  92. public void Close()
  93. {
  94. if (dbCommand != null)
  95. {
  96. dbCommand.Cancel();
  97. }
  98. dbCommand = null;
  99.  
  100. if (dataReader != null)
  101. {
  102. dataReader.Close();
  103. }
  104. dataReader = null;
  105.  
  106. if (dbConnection != null)
  107. {
  108. dbConnection.Close();
  109. }
  110. dbConnection = null;
  111. }
  112.  
  113. static void Log(string s)
  114. {
  115. Console.WriteLine("SqliteHelper: {0}", s);
  116. }
  117. // 将对象字段转SQL字段
  118. public string ObjectToSqlFields(Type type)
  119. {
  120. FieldInfo[] fis = type.GetFields();
  121. StringBuilder sb = new StringBuilder();
  122. string field = "";
  123. for (int i = 0; i < fis.Length; i++)
  124. {
  125. FieldInfo fi = fis[i];
  126. switch (fi.FieldType.Name)
  127. {
  128. case "Boolean":
  129. case "Byte":
  130. case "Int16":
  131. case "UInt16":
  132. case "Int32":
  133. case "UInt32":
  134. case "Int64":
  135. case "UInt64":
  136. field = string.Format("{0} INTEGER,", fi.Name);
  137. break;
  138. case "Single":
  139. case "Double":
  140. field = string.Format("{0} REAL,", fi.Name);
  141. break;
  142. case "String":
  143. field = string.Format("{0} TEXT,", fi.Name);
  144. break;
  145. case "Byte[]":
  146. field = string.Format("{0} BLOB,", fi.Name);
  147. break;
  148. }
  149. sb.Append(field);
  150. }
  151. string fields = sb.ToString();
  152. fields = fields.Remove(fields.Length - 1);//删除最后一个逗号
  153. return fields;
  154. }
  155.  
  156. public string ObjectToSqlFields(Object obj)
  157. {
  158. Type type = obj.GetType();
  159. return ObjectToSqlFields(type);
  160. }
  161.  
  162. // 对象转SQL命令
  163. public SQLiteCommand ObjectToCommand(Object obj, out string sql_fields, out string sql_values, out string sql_field_value)
  164. {
  165. dbCommand = dbConnection.CreateCommand();
  166. Type type = obj.GetType();
  167. FieldInfo[] fis = type.GetFields();
  168. StringBuilder sb_field = new StringBuilder();
  169. StringBuilder sb_value = new StringBuilder();
  170. StringBuilder sb_field_value = new StringBuilder();
  171. string value = "";
  172. for (int i = 0; i < fis.Length; i++)
  173. {
  174. FieldInfo fi = fis[i];
  175. switch (fi.FieldType.Name)
  176. {
  177. case "String":
  178. value = "\"" + fi.GetValue(obj).ToString() + "\"";
  179. sb_field.Append(fi.Name + ",");
  180. sb_value.Append(value + ",");
  181. sb_field_value.Append(string.Format("{0}={1},", fi.Name, value));
  182. break;
  183. case "Byte[]":
  184. string value_name = "@" + fi.Name;
  185. sb_field.Append(fi.Name + ",");
  186. sb_value.Append(value_name + ",");
  187. dbCommand.Parameters.Add(value_name, DbType.Binary).Value = fi.GetValue(obj);
  188. break;
  189. default:
  190. value = fi.GetValue(obj).ToString();
  191. sb_field.Append(fi.Name + ",");
  192. sb_value.Append(value + ",");
  193. sb_field_value.Append(string.Format("{0}={1},", fi.Name, value));
  194. break;
  195. }
  196. }
  197. sql_fields = sb_field.ToString();
  198. sql_fields = sql_fields.Remove(sql_fields.Length - 1);//删除最后一个逗号
  199. sql_values = sb_value.ToString();
  200. sql_values = sql_values.Remove(sql_values.Length - 1);//删除最后一个逗号
  201. sql_field_value = sb_field_value.ToString();
  202. sql_field_value = sql_field_value.Remove(sql_field_value.Length - 1);//删除最后一个逗号
  203. return dbCommand;
  204. }
  205.  
  206. // 根据对象字段创建数据表
  207. public int CreateTable(Object table)
  208. {
  209. Type type = table.GetType();
  210. return CreateTable(type);
  211. }
  212.  
  213. public int CreateTable(Type type)
  214. {
  215. string table_name = type.Name;
  216. table_name = table_name.Replace("_Table", "");
  217. table_name = table_name.Replace("Table", "");
  218. string fields = ObjectToSqlFields(type);
  219. //rowid: 默认创建的主键
  220. //datetime('now', 'localtime') 本地电脑时间
  221. //datetime('now', 'utc') UTC时间
  222. //strftime('%s','now') 时间戳,从1970-01-01算起的秒数
  223. string sql = string.Format("CREATE TABLE IF NOT EXISTS {0} ({1},timestamp default (strftime('%s','now')))", table_name, fields);
  224. Console.WriteLine("Create SQL: " + sql);
  225. return ExecuteNonQuery(sql);
  226. }
  227.  
  228. // 插入对象
  229. public int Insert(Object obj)
  230. {
  231. int result_code = -1;
  232. try
  233. {
  234. string table_name = obj.GetType().Name;
  235. string sql_fields;
  236. string sql_values;
  237. string sql_field_value;
  238. dbCommand = ObjectToCommand(obj, out sql_fields, out sql_values, out sql_field_value);
  239. string sql = string.Format("INSERT INTO {0} ({1}) VALUES({2})", table_name, sql_fields, sql_values);
  240. dbCommand.CommandText = sql;
  241. Console.WriteLine("Insert SQL: "+sql);
  242. result_code = dbCommand.ExecuteNonQuery();
  243. }
  244. catch (Exception e)
  245. {
  246. Log(e.Message);
  247. }
  248. return result_code;
  249. }
  250.  
  251. // 更新记录
  252. public int Update(Object obj, string sql_where_condition)
  253. {
  254. int result_code = -1;
  255. try
  256. {
  257. string table_name = obj.GetType().Name;
  258. string sql_fields;
  259. string sql_values;
  260. string sql_field_value;
  261. dbCommand = ObjectToCommand(obj, out sql_fields, out sql_values, out sql_field_value);
  262. string sql = string.Format("UPDATE {0} SET {1} WHERE {2}", table_name, sql_field_value, sql_where_condition);
  263. dbCommand.CommandText = sql;
  264. Console.WriteLine("Update SQL: " + sql);
  265. result_code = dbCommand.ExecuteNonQuery();
  266. }
  267. catch (Exception e)
  268. {
  269. Log(e.Message);
  270. }
  271. return result_code;
  272. }
  273.  
  274. // 删除记录
  275. public int Delete(string table_name, string sql_where_condition)
  276. {
  277. string sql = string.Format("DELETE FROM {0} WHERE {1}", table_name, sql_where_condition);
  278. return ExecuteNonQuery(sql);
  279. }
  280. }
  281. }


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Data.SQLite;
  7. using System.Collections.Specialized;
  8.  
  9. namespace SqliteTest
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. SqliteHelper sqlite = new SqliteHelper();
  16. bool success = sqlite.Connect(@"D:\ssss\trunk\client\.svn\wc.db");
  17. Console.WriteLine("Connect: {0}", success);
  18. SQLiteDataReader reader = sqlite.ExecuteQuery(@"select rowid, local_relpath from NODES order by rowid ASC limit 0,4");
  19. Console.WriteLine("FieldCount: {0}", reader.FieldCount);
  20. Console.WriteLine("VisibleFieldCount: {0}", reader.VisibleFieldCount);
  21. Console.WriteLine("StepCount: {0}", reader.StepCount);
  22. Console.WriteLine("HasRows: {0}", reader.HasRows);
  23.  
  24. /*StringBuilder sb = new StringBuilder();
  25. for (int i = 0; i < reader.FieldCount; i++)
  26. {
  27. //reader.GetDataTypeName(i);//获取列数据类型
  28. //reader.GetName(i);//获取列名称
  29. //sb.Append(reader.GetName(i) + ",");
  30. }
  31. Console.WriteLine(sb.ToString());*/
  32.  
  33. while(reader.Read())
  34. {
  35. //按列名读取每一行数据
  36. Console.WriteLine("{0}, {1}",
  37. reader.GetInt32(reader.GetOrdinal("rowid")),
  38. reader.GetString(reader.GetOrdinal("local_relpath")));
  39. }
  40. Console.Read();
  41. }
  42. }
  43. }


运行测试

1111.jpg


开发中可能会遇到的报错:

“System.BadImageFormatException”类型的第一次机会异常在 System.Data.SQLite.dll 中发生
SqliteHelper: System.BadImageFormatException: 试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B)
   在 System.Data.SQLite.UnsafeNativeMethods.sqlite3_config_none(SQLiteConfigOpsEnum op)
   在 System.Data.SQLite.SQLite3.StaticIsInitialized() 位置 c:\dev\sqlite\dotnet\System.Data.SQLite\SQLite3.cs:行号 3931
   在 System.Data.SQLite.SQLiteLog.Initialize() 位置 c:\dev\sqlite\dotnet\System.Data.SQLite\SQLiteLog.cs:行号 141
   在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework) 位置 c:\dev\sqlite\dotnet\System.Data.SQLite\SQLiteConnection.cs:行号 1722
   在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString) 位置 c:\dev\sqlite\dotnet\System.Data.SQLite\SQLiteConnection.cs:行号 1659
   
原因:当前所使用的.NET Framework版本与System.Data.SQLite所使用的版本不一致
属性->应用程序->目标框架

1111.png

如果还是报这个错,请用Visual Studio 的NuGet工具安装


示例二:将数据库中的数据显示到控件中


  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.IO;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using System.Data.SQLite;
  12.  
  13. namespace Test7
  14. {
  15. public partial class Form1 : Form
  16. {
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. Init();
  21. }
  22.  
  23. private void Init()
  24. {
  25. string db_path = Environment.CurrentDirectory + "\\info.db";
  26. Console.WriteLine(db_path);
  27.  
  28. SqliteHelper db = new SqliteHelper();
  29. bool success = db.Connect(db_path);
  30. if (!success)
  31. {
  32. MessageBox.Show("连接数据库失败!");
  33. return;
  34. }
  35.  
  36. Console.WriteLine("Connect: {0}", success);
  37.  
  38. /*
  39. string sql_create_table = "CREATE TABLE IF NOT EXISTS user_info(row_id INTEGER PRIMARY KEY AUTOINCREMENT, sex INT, name TEXT, reg_date CURRENT_TIMESTAMP)";
  40. int result_code = db.ExecuteNonQuery(sql_create_table);
  41. Console.WriteLine("result_code: {0}", result_code);
  42.  
  43. string sql_insert = @"INSERT INTO user_info(sex, name, reg_date) VALUES(0, '明明', CURRENT_TIMESTAMP)";
  44. result_code = db.ExecuteNonQuery(sql_insert);
  45. Console.WriteLine("result_code: {0}", result_code);
  46. * */
  47.  
  48. string sql_query = "SELECT * FROM 'user_info'";
  49. SQLiteDataReader reader = db.ExecuteQuery(sql_query);
  50. while(reader.Read())
  51. {
  52. //逐行读取数据库中记录
  53. int row_id = reader.GetInt32(reader.GetOrdinal("row_id"));
  54. int sex = reader.GetInt32(reader.GetOrdinal("sex"));
  55. string name = reader.GetString(reader.GetOrdinal("name"));
  56. string reg_date = reader.GetString(reader.GetOrdinal("reg_date"));
  57. //将数据插入DataGridView控件中
  58. int index = this.dataGridView1.Rows.Add();
  59. this.dataGridView1.Rows[index].Cells[0].Value = row_id;
  60. this.dataGridView1.Rows[index].Cells[1].Value = sex;
  61. this.dataGridView1.Rows[index].Cells[2].Value = name;
  62. this.dataGridView1.Rows[index].Cells[3].Value = reg_date;
  63. }
  64. //设置列标题居中显示
  65. this.dataGridView1.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
  66. }
  67. }
  68. }


运行测试

1111.png

示例三:根据对象字段创建数据表


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6. using System.Data.SQLite;
  7.  
  8. namespace ConsoleApp4
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. SqliteHelper sqlite = new SqliteHelper();
  15. bool success = sqlite.Connect(@"D:\wc.db");
  16. Console.WriteLine("Connect: {0}", success);
  17.  
  18. Object obj = new UserInfo();
  19. int resultCode = sqlite.CreateTable(obj);
  20. Console.WriteLine("返回码:" + resultCode);
  21.  
  22. Console.ReadKey();
  23. }
  24. }
  25.  
  26. public class UserInfo
  27. {
  28. public int id = 1;
  29. public string name = "aaa";
  30. public int age = 17;
  31. public byte[] bs = null;
  32. }
  33. }


运行测试
111.png
Navicat for SQLite打开db文件查看

2222.png

示例四:插入、更新记录


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6. using System.Data.SQLite;
  7.  
  8. namespace ConsoleApp4
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. SqliteHelper sqlite = new SqliteHelper();
  15. bool success = sqlite.Connect(@"D:\wc.db");
  16. Console.WriteLine("Connect: {0}", success);
  17.  
  18. UserInfo obj = new UserInfo();
  19. int result_code = sqlite.CreateTable(typeof(UserInfo));
  20. Console.WriteLine("创建表 返回码="+result_code);
  21.  
  22. result_code = sqlite.Insert(obj);
  23. Console.WriteLine("插入记录 返回码=" + result_code);
  24.  
  25. obj.name = "name_update";
  26. obj.age = 25;
  27. obj.bytes = new byte[] { 90, 58, 39 };
  28. result_code = sqlite.Update(obj, "id=1");
  29. Console.WriteLine("更新记录 返回码=" + result_code);
  30.  
  31. Console.ReadKey();
  32. }
  33. }
  34.  
  35. public class UserInfo
  36. {
  37. public int id = 1;
  38. public string name = "name";
  39. public int age = 17;
  40. public byte[] bytes = new byte[] { 19, 48, 199 };
  41. }
  42. }


运行测试

1111.png

Navicat for SQLite打开db文件查看

2222.png


更多示例:

DataGridView显示数据库数据

在 .NET Core 工程中使用SQLite

22222.png

111111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号