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);
「データベースファイルを開けませんでした」という例外が返されるので、何が問題なのですか?