SQLiteConnection,C#

时间:2016-06-09 23:18:39

标签: c# sqlite

我安装了#34; SQLite for Universal App Platform"在我的Visual Studio 2015项目中,后来我安装了NuGet包" sqlite.net-pcl-silverlight"

我正在尝试以下几行:

string dbPath = Path.Combine(ApplicationData.Current.LocalFolder.Path, "Storage.sqlite"); 
SQLiteConnection DB = new SQLiteConnection(dbPath); 

它没有用,但我发现这一行是有效的:

SQLiteConnection DB = new SQLiteConnection(sqlitePlatform, dbPath); 

我的问题是我不知道哪个应该是sqlitePlatform的价值......请帮忙。

1 个答案:

答案 0 :(得分:0)

对于UWP,与WinRT相同的sqlitePlatform应该有效。来吧试试这个:

var connection = new SQLiteConnection(new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT(), path);

那应该适合你。