创建连接时的SQLite异常

时间:2015-07-22 13:25:30

标签: sqlite xamarin.forms

创建连接时收到SQLite异常。

这在我安装VS2015 RTM之前有效。

客户(PCL):

 _databaseConnection = DependencyService.Get<IDatabase>().Connect();

Android项目:

 public SQLiteConnection Connect()
 {
    var fileName = "my_file.db3";
    var documentsPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
    var path = Path.Combine(documentsPath, fileName);
    var connection = new SQLiteConnection(path);

    return connection;
 }

执行时收到异常:

 var connection = new SQLiteConnection(path);
  

构建配置出了问题。这是诱饵   程序集,用于通过可移植库进行引用,并且应该   从来没有结束应用程序的一部分。

注意:

SQLitePCL.raw_basic在0.7.1上  每当我尝试将版本升级到0.8.1

时,我都会收到错误

同样,在我安装VS2015 RTM之前,这一切都有效  有什么建议吗?

0 个答案:

没有答案