添加SQLite库-ios5

发布于 2024-12-29 23:01:54 字数 333 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送君千里 2025-01-05 23:01:54

编译器看不到 sqlite 3 结构体的声明。尝试导入或包含主 SQLite3 API 头文件:

#include <sqlite3.h>

#import <sqlite3.h>

The compiler cannot see the declaration of the sqlite 3 struct. Try importing or including the main SQLite3 API header file:

#include <sqlite3.h>

or

#import <sqlite3.h>
恋你朝朝暮暮 2025-01-05 23:01:54

是的,编译器看不到 sqlite3 库的声明,所以你必须导入它

#import "/usr/include/sqlite3.h"

,否则

#import <sqlite3.h>

它会在之后工作。

Yes, The Compiler cannot see the declaration of the sqlite3 library ,So you have to import it by

#import "/usr/include/sqlite3.h"

or

#import <sqlite3.h>

it will work after that .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文