views:

142

answers:

2

I'd like to see some sample code for that. Any good Tutorial-Link is also welcome.

A: 

The same way you would in any SQL database.

Steven Canfield
+4  A: 

Here is a link to the SQLite3 C/C++ Intro.

In the past, I've used the sqlite3_exec() function to execute SQL statements instead of the harder prepared statement API.

Here is another link to iPhone specific articles on SQLite.

iPhone SDK Articles: SQLite

jkf