上传者: gaogm3
|
上传时间: 2022-08-15 09:22:08
|
文件大小: 4.79MB
|
文件类型: RAR
用 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();
}
}