C#_Sqlite数据库知识

1.插入语句 示例
SQLite Database Brower 软件增加空数据可直接使用

INSERT INTO _表名 (标题,内容)
VALUES ("", "");
======================================================================================
2.获取数据库中表的个数代码示例
  //1创建SQLite数据库连接字符串
  string conStr = @"data source=" + System.Windows.Forms.Application.StartupPath + @"\CSharp.db;version=3";
  //2.链接数据库
  SQLiteConnection con = new SQLiteConnection(conStr);
  //3.打开数据库
  con.Open();
  SQLiteCommand cmd = con.CreateCommand();
  cmd.CommandText = "SELECT count(name) FROM sqlite_master WHERE type = 'table'";
  int a = Convert.ToInt16(cmd.ExecuteScalar());//记录数据库中表的个数
======================================================================================

posted @ 2021-11-20 10:05  总统双  阅读(86)  评论(0编辑  收藏  举报