windows phone中使用SQLite时报错"unable to open database file"
我的据库文件“StoreDB.sqlite”是我通过火狐的一个插件SQLiteManager的工具创建的,创建Table后就放到项目中使用。在执行下面查询语句的时候报错了:
public List<T> Select<T>(string statement) where T : new()
{
try
{
Open();
SQLiteCommand cmd = db.CreateCommand(statement);
var list = cmd.ExecuteQuery<T>();
return list.ToList(); //执行到这一句的时候抛出了异常
}
catch (SQLiteException ex)
{
throw new Exception("Select Data failed: " + ex.Message);
}
finally
{
this.Close();
}
}