【发布时间】:2013-01-21 21:56:36
【问题描述】:
我喜欢在此之后记录编译后的语句:
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);
【问题讨论】:
标签: objective-c sqlite