vote up -3 vote down star

hey all, i have built a SQLite database and wanna to add into iphone app. already i have add it resource->add->x.sqlite and also add libsqlite3.0.dylib.framework but i don't know what is the showing code. how i can show it to iphone. .......

flag

10% accept rate
Andy, why have you edited the question and made it worse? – Tony Lambert Jan 28 at 13:15
wait a minute this is another question by the same author... sorry. – Tony Lambert Jan 28 at 13:16

2 Answers

vote up 1 vote down

Take a look at the SQLite Books sample. It does exactly what you are asking about.

http://developer.apple.com/iphone/library/samplecode/SQLiteBooks/index.html

link|flag
vote up 1 vote down

If you've added it to your project and have added the Framework then your app should be able to "see" the database. You just need to open it and query/write to it.

You get the path to the database something like this:

NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"my.db"];

And then open it like this:

sqlite3_open([path UTF8String], &database);

Note that referring directly to the resource like this means your database will be read-only. You need to copy it elsewhere if you want to insert/update data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.