我之前在 C++ 中通过包含 sqlite.h 完成了此操作,但是在 C# 中是否有类似的简单方法?
10 回答
我和布鲁斯在一起。我正在使用http://system.data.sqlite.org/也取得了巨大的成功。这是我创建的一个简单的类示例:
using System;
using System.Text;
using System.Data;
using System.Data.SQLite;
namespace MySqlLite
{
class DataClass
{
private SQLiteConnection sqlite;
public DataClass()
{
//This part killed me in the beginning. I was specifying "DataSource"
//instead of "Data Source"
sqlite = new SQLiteConnection("Data Source=/path/to/file.db");
}
public DataTable selectQuery(string query)
{
SQLiteDataAdapter ad;
DataTable dt = new DataTable();
try
{
SQLiteCommand cmd;
sqlite.Open(); //Initiate connection to the db
cmd = sqlite.CreateCommand();
cmd.CommandText = query; //set the passed query
ad = new SQLiteDataAdapter(cmd);
ad.Fill(dt); //fill the datasource
}
catch(SQLiteException ex)
{
//Add your exception code here.
}
sqlite.Close();
return dt;
}
}
还有一个NuGet 包:System.Data.SQLite可用。
Microsoft的 Microsoft.Data.Sqlite 每天有超过 9000 次下载,所以我认为你使用它是安全的。
文档中的示例用法:
using (var connection = new SqliteConnection("Data Source=hello.db"))
{
connection.Open();
var command = connection.CreateCommand();
command.CommandText =
@"
SELECT name
FROM user
WHERE id = $id
";
command.Parameters.AddWithValue("$id", id);
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
var name = reader.GetString(0);
Console.WriteLine($"Hello, {name}!");
}
}
}
我已经成功地使用了它:
http://system.data.sqlite.org/
免费,没有任何限制。
(评论注意:原网站已不存在。以上链接有一个指向404网站的链接,并包含原网站的所有信息)
——布鲁斯
在http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers上有一个 .Net 的 Sqlite 包装器列表。据我所知, http: //sqlite.phxsoftware.com/相当不错。这个特殊的允许您通过 ADO.Net 访问 Sqlite,就像任何其他数据库一样。
现在还有这个选项:http ://code.google.com/p/csharp-sqlite/ - SQLite 到 C# 的完整端口。
https://github.com/praeclarum/sqlite-net现在可能是最好的选择。
在 NET Framework 中使用 SQLite 数据库的另一种方法是使用Fluent-NHibernate。
[它是围绕 NHibernate 的 NET 模块(ORM 模块 - 对象关系映射),并允许使用流式模式以编程方式(没有 XML 文件)配置 NHibernate。]
以下是如何在 C# 中逐步执行此操作的简短“入门”描述:
https://github.com/jagregory/fluent-nhibernate/wiki/Getting-started
它包含作为 Visual Studio 项目的源代码。
Mono 带有一个包装器,使用他们的!
https://github.com/mono/mono/tree/master/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0提供了包装实际 SQLite dll 的代码(http://www.sqlite. org/sqlite-shell-win32-x86-3071300.zip以 .net 友好的方式在下载页面http://www.sqlite.org/download.html/上找到。它适用于 Linux 或 Windows。
这似乎是所有世界中最薄的,最大限度地减少了您对第三方库的依赖。如果我必须从头开始做这个项目,我会这样做。
在这里,我试图帮助您逐步完成工作:(这可能是其他问题的答案)
- 转到此地址,在页面下方您可以看到类似“发布包列表”的内容。根据您的系统和 .net 框架版本选择适合您的版本。例如,如果您想在 64 位 Windows 上使用 .NET Framework 4.6,请选择此版本并下载。
- 然后将文件安装在硬盘上的某个位置,就像任何其他软件一样。
- 打开 Visual Studio 和您的项目。然后在解决方案资源管理器中,右键单击“引用”并选择“添加引用... ”。
- 单击浏览按钮并选择上一个文件的安装位置,然后转到 .../bin/System.Data.SQLite.dll 并单击添加,然后单击确定按钮。
差不多就是这样。现在你可以在你的项目中使用 SQLite。要在代码级别的项目中使用它,您可以使用以下示例代码:
创建一个连接字符串:
string connectionString = @"URI=file:{the location of your sqlite database}";
建立一个sqlite连接:
SQLiteConnection theConnection = new SQLiteConnection(connectionString );
打开连接:
theConnection.Open();
创建一个 sqlite 命令:
SQLiteCommand cmd = new SQLiteCommand(theConnection);
制作一个命令文本,或者更好地说你的 SQLite 语句:
cmd.CommandText = "INSERT INTO table_name(col1, col2) VALUES(val1, val2)";
执行命令
cmd.ExecuteNonQuery();
这就对了。
如果您对库有任何问题,可以使用Microsoft.Data.Sqlite;
public static DataTable GetData(string connectionString, string query)
{
DataTable dt = new DataTable();
Microsoft.Data.Sqlite.SqliteConnection connection;
Microsoft.Data.Sqlite.SqliteCommand command;
connection = new Microsoft.Data.Sqlite.SqliteConnection("Data Source= YOU_PATH_BD.sqlite");
try
{
connection.Open();
command = new Microsoft.Data.Sqlite.SqliteCommand(query, connection);
dt.Load(command.ExecuteReader());
connection.Close();
}
catch
{
}
return dt;
}
你可以添加 NuGet 包 Microsoft.Data.Sqlite