Donald Steele <[email protected]> wrote: > sqlite3_close(contactDB); > NSLog(@" error '%s", sqlite3_errmsg(contactDB) );
The error is produced not by sqlite3_prepare_v2 but by sqlite3_errmsg, as you are calling it on an already-closed handle. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

