我在一个简单的项目中遇到了很多麻烦。我的WP8应用程序需要从SQLite数据库中检索数据,因此我将其文件放在Assets文件夹中(它是临时的),我需要得到它。它没有赢。这是我的代码。
try
{
string path="\\Assets\\dbelli.db";
public SQLiteConnection conn=new SQLiteConnection(path);
}
catch (Exception e)
{
MessageBox.Show("Error: " + e.ToString());
}
引发FileNotFoundException
。
我在网上搜索了所有内容,我甚至尝试从C:\
开始,但它不会起作用。我觉得这很愚蠢。我可以寻求帮助吗?
答案 0 :(得分:1)
尝试类似:
string DB_PATH = Path.Combine(ApplicationData.Current.LocalFolder.Path, "Your local path here");
然后
_connection = new SQLite.SQLiteConnection(DB_PATH)
您可以获得一些帮助here