WP8:在SQLite中找不到文件

时间:2014-07-02 19:28:13

标签: sqlite windows-phone-8 visual-studio-2013 windows-8.1 windows-phone-8.1

我按照This发布在Windows Phone 8中尝试SQlite实现,我能够做到这一点。最近我用VS 2013安装了Win 8.1。现在我又尝试了同样的步骤来运行以前创建的示例现在不能正常工作。

我在下面的代码中收到错误。

#if USE_WP8_NATIVE_SQLITE
        return (Result)Sqlite3.sqlite3_open_v2(filename, out db, flags, "");
#else
        return (Result)Sqlite3.sqlite3_open_v2(filename, out db, flags, null);
#endif

我得到了这个enter image description here

不确定这有什么问题。

任何人都能帮助我吗?

1 个答案:

答案 0 :(得分:3)

您很可能没有安装SQLite for Windows Phone SDK(不是.NET可调用包装器,实际引擎)。从http://sqlite.org/download.html下载,然后在项目中添加对它的引用。