I’m trying to start with SQLite and the Firefox add-on to create a new database. I don’t really see how we call the database in the code, once the tables are created with Firefox.
I opened SQLite Manager in Firefox. Then I created all my tables. Now, how can I link them to my code with this, for example:
-(void) getQuestions:(sqlite3_stmt *)reqCompilee {
while(sqlite3_step(reqCompilee) == SQLITE_ROW) {
NSString * myTexte = [[NSString alloc] initWithUTF8String:
(char*)sqlite3_column_text(reqCompilee, 1)];
you get every thing here for implementing sqllite in your project.
in this tutorial you find other important links.