You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have upgraded Sqlite-net-pcl from 1.5.231 to 1.7.335 in my application.
earlier i was using code: database = new SQLiteAsyncConnection(dbPath, true, "testKey"); // as part of version 1.5.231
But now after upgrading, I changed the code for supporting the key to
var sQLiteConnectionString = new SQLiteConnectionString(dbPath, true, "testKey"); //changed as per version 1.7.335
database = new SQLiteAsyncConnection(sQLiteConnectionString);
The above code is working fine in iOS13 and below. But in iOS14, after executing the above lines and when I try to execute database.CreateTableAsync<MyClass>().Wait();
getting below error.
One or more errors occurred. (not an error)
The text was updated successfully, but these errors were encountered:
@xhashimks I have been unable to reproduce this issue or any difference in behavior between iOS 13 and 14 with a test application. Without a standalone project that reliably demonstrates the problem I don't think we can do much more here.
Hello,
I have upgraded Sqlite-net-pcl from 1.5.231 to 1.7.335 in my application.
earlier i was using code:
database = new SQLiteAsyncConnection(dbPath, true, "testKey");
// as part of version 1.5.231But now after upgrading, I changed the code for supporting the key to
The above code is working fine in iOS13 and below. But in iOS14, after executing the above lines and when I try to execute
database.CreateTableAsync<MyClass>().Wait();
getting below error.
One or more errors occurred. (not an error)
The text was updated successfully, but these errors were encountered: