当前位置:   article > 正文

C# 中 SQLite 查询数据库表中字段(列)是否存在的方法_c# sqlite查询数据

c# sqlite查询数据

查询SQLite数据库表中字段(列)存在的方法

使用SQL语句为:PRAGMA table_info([DeviceTrees]);   其中“DeviceTrees”为数据库表的名称。

使用SQLite Expert Professional工具,查看该语句是否起作用,这里使用的版本是v3.1.9的。

输入语句后,点击“Execute SQL”按钮后,查询结果如下图所示,说明该语句查询是正确的。

在C# 中通过该语句查询DeviceTrees表中所有字段(列),放入DataTable中,通过循环判读字段(列)是否存在。示例代码如下所示

  1. public bool InsertColumnGuidFunc()
  2. {
  3. bool isExist = false;
  4. try
  5. {
  6. List<string> columnList = new List<string>();
  7. //查询DetectorTrees 表信息
  8. string strSql = "PRAGMA table_info([DeviceTrees]);";
  9. //调用SQLite数据库接口
  10. using (DataTable dt = SQLiteDbHelper.ExecuteDataTable(strSql.ToString(), null))
  11. {
  12. if (dt != null && dt.Rows.Count > 0)
  13. {
  14. for (int i = 0; i < dt.Rows.Count; i++)
  15. {
  16. string columnName = dt.Rows[i]["name"].ToString();
  17. columnList.Add(columnName);
  18. }
  19. }
  20. }
  21. //判断列是否存在
  22. if (columnList != null && columnList.Count > 0)
  23. {
  24. if (columnList.Contains("DeviceGuid"))
  25. isExist = true;
  26. else
  27. isExist = false;
  28. }
  29. }
  30. catch (Exception ex)
  31. {
  32. }
  33. finally
  34. {
  35. }
  36. return isExist;
  37. }

根据查询结果,如果字段(列)存在,则不进行插入字段(列)的操作,反之,则可通过sql语句向表中插入想要的字段(列)。

扩展

插入字段(列)主要语句为:

alter table DeviceTrees add column [DeviceGuid] VARCHAR(100) NOT NULL DEFAULT ('00000000-0000-0000-0000-000000000000');

**************************************************************************************************************

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/140703
推荐阅读
相关标签
  

闽ICP备14008679号