使用SQLite for windows phone app时,我在sqlite.cs中遇到错误:
找不到路径
这是路径,但是当找到检查路径时,我硬编码路径并尝试但是它没有用完。
string dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "db.sqlite");
这是错误
public static Result Open(string filename, out Sqlite3DatabaseHandle db, int flags, IntPtr zVfs)
{
return (Result)Sqlite3.sqlite3_open_v2(filename, out db, flags, "");
#else
return (Result)Sqlite3.sqlite3_open_v2(filename, out db, flags, null);
}
此处路径数据库即将到来null
。