この後にコンパイルされたステートメントをログに記録したい:
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);