25
Apr
sqlite3 *database; // the sqlite3 database object
.
.
.
NSLog( @”Failed from sqlite3_step(statement). Error is: %s”, sqlite3_errmsg(database) ); // the parameter for the method, sqlite3_errmsg(sqlite3*) is the sqlite3 object, which represents the database.




