在Windows Phone中建立Sq-lite连接时遇到错误

时间:2014-02-28 08:50:44

标签: c# sqlite windows-phone-7 windows-phone-8

在WP应用程序中,我正在尝试与existing Sqlite数据库建立连接,但未使用Sqlite异常"near ")": syntax error"。我在解决方案中包含了另一个C ++项目。

string dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "QuranApp2.db");
                using (var db = new SQLiteConnection(dbPath))
                {
                    db.RunInTransaction(() =>
                    {
                        db.Insert(new Book() { Book_ID = 5, BookDescription = "Tucker" });
                    });
                }

请注意,QuranApp2.db位于Assets文件夹中。 enter image description here

0 个答案:

没有答案