【发布时间】:2012-12-13 14:55:55
【问题描述】:
我在检索 sqlite 表记录时遇到问题。 我已经包含了
while (sqlite_step(&statement) == SQLITE_ROW) {
.....
.....
}
此语句显示警告“函数 sqlite_step 的隐式声明在 C99 中无效”,随后抛出错误“Undefined symbols for architecture i386:"_sqlite_step",... .' 编译时。请帮帮我。
【问题讨论】:
-
从 while (sqlite_step(&statement) == SQLITE_ROW) 中删除 '&'
标签: objective-c ios xcode sqlite