我喜欢在此之后记录编译的语句:
if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK) {
sqlite3_bind_int( compiledStatement, 1, updateThis.web_id);
[...]
}
NSLog(@"Put out the complete SQLite Statement.");
直接输出失败,我认为这不是这样做的方法:
NSLog(@"%@",compiledStatement);