SQLiteConnection 不接受字符串作为参数
SQLiteConnection not accepting sting as argument
我正在尝试使用我在 Internet 上找到的一些示例连接到 SQLite .db 文件:
var m_connection = new SQLiteConnection("Data Source=Tabs.db;version=3;");
但是,Visual Studio 2015 不会接受这一点,因为它说它不只接受一个参数。
SQLiteConnection.SQLiteConnection(SQLite.Net.Interop.ISQLitePlatform,
string, bool, SQLite.Net.IBlobSerializer,
System.Collections.Generic.IDictionary,
System.Collections.Generic.IDictionary,
SQLite.Net.IContractResolver)
是对象浏览器中显示的内容。
所有的例子看起来都很简单,我遇到了什么?
我下载了SQLite.Net-PCL 3.1.1
听起来你很困惑system.data.sqlitehttps://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki (from the sqlite team) with sqlite.net https://github.com/oysteinkrog/SQLite.Net-PCL
Sqlite.net 没有单个字符串构造函数。
如果您只使用 windows,我建议您使用 system.data.sqlite(或查阅 sqlite.net 文档)
我正在尝试使用我在 Internet 上找到的一些示例连接到 SQLite .db 文件:
var m_connection = new SQLiteConnection("Data Source=Tabs.db;version=3;");
但是,Visual Studio 2015 不会接受这一点,因为它说它不只接受一个参数。
SQLiteConnection.SQLiteConnection(SQLite.Net.Interop.ISQLitePlatform, string, bool, SQLite.Net.IBlobSerializer, System.Collections.Generic.IDictionary, System.Collections.Generic.IDictionary, SQLite.Net.IContractResolver)
是对象浏览器中显示的内容。 所有的例子看起来都很简单,我遇到了什么? 我下载了SQLite.Net-PCL 3.1.1
听起来你很困惑system.data.sqlitehttps://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki (from the sqlite team) with sqlite.net https://github.com/oysteinkrog/SQLite.Net-PCL
Sqlite.net 没有单个字符串构造函数。
如果您只使用 windows,我建议您使用 system.data.sqlite(或查阅 sqlite.net 文档)