C# SQLite 创建默认数据库 简单示例 笔记
记录笔记:C# 中如何创建SQLite数据库、数据表、插入数据命名空间:using System.Data.SQLite;private void CreateDB(string dbPath){ try { SQLiteConnection.CreateFile(dbPath); SQLiteConnection sqliteComm = new SQLiteConne...