SQLiteConnection不接受刺痛作为参数
本文关键字:参数 不接受 SQLiteConnection | 更新日期: 2023-09-27 18:36:40
我正在尝试使用我在互联网上找到的一些示例连接到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.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 文档)