I am developing an application in iphone and am new to iphone. Kindly let me know the code for open/close/update/delete database record in iphone using sqlite?
Regards, Vijaya
I am developing an application in iphone and am new to iphone. Kindly let me know the code for open/close/update/delete database record in iphone using sqlite?
Regards, Vijaya
import
In .h file
Add the following code in
appdelegate.m
indidFinishLaunching
method:In your view controller call the method of insertion etc. here i called a method which brings me the data from table
Here is a sample code to connect SQLite from iOS:(insertion of data) Source:http://sickprogrammersarea.blogspot.in/2014/03/sqlite-in-ios-using-objective-c.html
Read the sqlite documentation on their website. They have API references and tutorials. All you need to get going in XCode is to add the libsqlite3.dylib to the referenced frameworks.