0

我正在尝试使用在 Internet 上找到的一些示例连接到 SQLite .db 文件:

var m_connection = new SQLiteConnection("Data Source=Tabs.db;version=3;");

但是,Visual Studio 2015 不会接受这一点,因为它说它不只接受一个参数。

SQLiteConnection.SQLiteConnection(SQLite.Net.Interop.ISQLitePlatform,字符串,布尔值,SQLite.Net.IBlobSerializer,System.Collections.Generic.IDictionary,System.Collections.Generic.IDictionary,SQLite.Net.IContractResolver)

是对象浏览器中显示的内容。所有的例子看起来都很简单,我遇到了什么?我下载了 SQLite.Net-PCL 3.1.1

4

1 回答 1

2

听起来您将 system.data.sqlite https://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki(来自 sqlite 团队)与 sqlite.net https://github混淆了.com/oysteinkrog/SQLite.Net-PCL

Sqlite.net 没有单个字符串构造函数。

如果您仅在 Windows 上工作,我建议您使用 system.data.sqlite(或查阅 sqlite.net 文档)

于 2016-02-29T17:10:23.543 回答