添加SQLite库-ios5
我正在使用 iOS5。我是 SQLite 的新手。我创建了名为 DemoDB.sqlite 的数据库 现在为了与数据库建立连接,我为 SQLite 添加了 libsql3.0.dylib
-library。
但我收到一个错误。 “readDataFromDatabase 方法出错”
我应该添加哪个库?
-(void) readDataFromDatabase
{
sqlite3 *database;
}
我收到的错误是“使用未声明的标识符数据库”
I am working on iOS5.I am new for SQLite. I have created database named DemoDB.sqlite
Now for making connection with database I have added libsql3.0.dylib
-library for SQLite.
But I received an error. "Error in readDataFromDatabase method"
Which library should I add?
-(void) readDataFromDatabase
{
sqlite3 *database;
}
The error I received is "use of undeclared identifier database"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编译器看不到 sqlite 3 结构体的声明。尝试导入或包含主 SQLite3 API 头文件:
或
The compiler cannot see the declaration of the sqlite 3 struct. Try importing or including the main SQLite3 API header file:
or
是的,编译器看不到 sqlite3 库的声明,所以你必须导入它
,否则
它会在之后工作。
Yes, The Compiler cannot see the declaration of the sqlite3 library ,So you have to import it by
or
it will work after that .