Sqlite 接口类 C#
时间: 2023-11-22 13:43:51 浏览: 76
可以使用 System.Data.SQLite 命名空间提供的接口类来在 C# 中操作 SQLite 数据库。该命名空间提供了 SQLiteConnection、SQLiteCommand、SQLiteDataReader 等类,可以用于连接数据库、执行 SQL 语句以及读取查询结果等操作。
以下是一个简单的示例代码,演示了如何使用 SQLiteConnection 和 SQLiteCommand 类来连接数据库并执行查询:
```csharp
using System.Data.SQLite;
// 连接数据库
var connectionString = "Data Source=mydatabase.db;Version=3;";
using (var connection = new SQLiteConnection(connectionString))
{
connection.Open();
// 执行查询
var command = new SQLiteCommand("SELECT * FROM mytable", connection);
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
// 处理查询结果
var id = reader.GetInt32(0);
var name = reader.GetString(1);
Console.WriteLine($"id: {id}, name: {name}");
}
}
}
```
阅读全文