When I Try Sqlite On Ios, Insert And Update Does Not Work
I createed a table in user.db, this file is in my xcode project folder. create table user (uid INTEGER PRIMARY KEY ASC AUTOINCREMENT, username, mobile); Next, in the app delegate
Solution 1:
You can't update databases stored in the app resources. Try copying the database to your app's Document or Library folder and then updating the database there.
Post a Comment for "When I Try Sqlite On Ios, Insert And Update Does Not Work"