FMDB SQLite 包装器和用户定义/自定义函数

发布于 2024-10-03 18:43:37 字数 421 浏览 3 评论 0原文

我目前正在将 FMDB 用于 iPhone 应用程序,我发现它......好吧。它确实是一个很棒的小型 SQLite 包装器。

FMDB GitHub: https://github.com/ccgus/fmdb

唯一的问题是我需要使用自定义功能。在 SQLite 中,我可以通过使用以下语法轻松地做到这一点:

sqlite3_create_function(database, "custom", 4, SQLITE_UTF8, NULL, &customFunc, NULL, NULL);

除了 FMDB,我认为没有办法使用自定义函数?

如果我错了请纠正我。任何帮助将不胜感激。

I'm using FMDB for an iPhone app at the moment and I'm finding it... okay. It's a great little SQLite wrapper indeed.

FMDB GitHub:
https://github.com/ccgus/fmdb

The only problem is I'm needing to use a custom function. In SQLite I can easily do this by using the following syntax:

sqlite3_create_function(database, "custom", 4, SQLITE_UTF8, NULL, &customFunc, NULL, NULL);

Except with FMDB I don't think there's a way to use a custom function?

Correct me if I'm wrong. Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

裸钻 2024-10-10 18:43:38

FMDB 是开源的,您可以添加一个包装方法来包装创建新的 SQLite 函数。应该不难。您可以使用其他包装器方法作为模板来完成此任务。

也许您可以将您的补充贡献回社区?

FMDB is open source, you could add a wrapper method to wrap up creating a new SQLite function. Shouldn't be difficult. You can use the other wrapper methods as templates for how you should accomplish this.

Maybe you could contribute your additions back to the community?

昨迟人 2024-10-10 18:43:38

我知道这是一个老问题,但以下应该可行:

FMDatabase *database = [FMDatabase databaseWithPath:dbPath];

[database open];

sqlite3_create_function([database sqliteHandle], "distance", 4, SQLITE_UTF8, NULL, &distanceFunc, NULL, NULL);

FMResultSet *results = [database executeQuery:@"SELECT * from stores WHERE distance(latitude, longitude, -37.77023, 148.089688) < 1"];

显然,您可以使用 customcustomFunc (或其他)代替 distance 和 distanceFunc 但你明白了。

I know this is an old question, but the following should work:

FMDatabase *database = [FMDatabase databaseWithPath:dbPath];

[database open];

sqlite3_create_function([database sqliteHandle], "distance", 4, SQLITE_UTF8, NULL, &distanceFunc, NULL, NULL);

FMResultSet *results = [database executeQuery:@"SELECT * from stores WHERE distance(latitude, longitude, -37.77023, 148.089688) < 1"];

Obviously, you'd use custom and customFunc (or whatever) in place of distance and distanceFunc but you get the idea.

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