2
我喜歡登錄後這個編譯聲明:打印/日誌SQLite的聲明後,結合
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);
非常有用的感謝! – Paludis