用 C# .net访问SQLite所需要的动态链接库文件和安装包。 包括System.Data.SQLite.dll、SQLite.Interop.dll和SQLite.Designer.dll三个动态链接库和原安装包。保护 SQLiteConnection SQLiteCommand SQLiteDataAdapter等完全符合.net规则的数据库连接方法。 使用方法举例 using (SQLiteConnection connection = CreateConnection1()) { DataSet ds = new DataSet(); try { connection.Open(); SQLiteDataAdapter command = new SQLiteDataAdapter(strSQL, connection); command.Fill(ds, "ds"); command.Dispose(); return ds; } catch (SQLiteException ex) { throw ex; } finally { connection.Close(); } }
2022-08-15 09:22:08 4.79MB SQLite C# .net SQLite开发包
1
基于.NET C#的Sqlitelite数据库操作类
2021-11-24 14:41:09 4KB .netSqlite
1