我正在开发一个已有数据库database.db文件的应用程序。 我搜索了很多,但所有可用于Windows Phone 7的解决方案都无法正常工作。有没有关于如何实现现有数据库的sqlite的运行解决方案?我也尝试过WP7Sqliteclient,但这也无法正常工作。任何人都可以指导我正确的方向。 我已将构建属性设置为资源。
Sqlite3.Vdbe Prepare()
{
Sqlite3.Vdbe ppStmt=new Sqlite3.Vdbe();
if (Sqlite3.sqlite3_prepare_v2(_db, CommandText, CommandText.Length, ref ppStmt, 0) != Sqlite3.SQLITE_OK)
throw new SQLiteException(Sqlite3.sqlite3_errmsg(_db));
BindAll(ppStmt); // here is exception
return ppStmt;
}