我是 WinRT 开发的新手。我正在尝试在 c# 中使用 sqlite,但是当我尝试像这样连接到本地数据库文件时:
string path = @"D:\product.s3db";
string constr = "Data Source=" + path + "; Version=3; PRAGMA temp_store_directory=" + Windows.Storage.ApplicationData.Current.TemporaryFolder.Path;
SQLiteConnection con = new SQLiteConnection(constr);
它返回一个异常“无法打开数据库文件”,那么这里出了什么问题?