连接到远程数据库

发布于 2024-11-13 23:04:04 字数 290 浏览 5 评论 0 原文

是否有一个框架或类允许 Cocoa 和 Objective-C 与远程数据库,可以是 SQLiteMySQL,还是其他(尽管最好是 SQLite)?

Is there a framework or class that allows Cocoa and Objective-C to interface with a remote database, be it SQLite, MySQL, or another (though preferably SQLite)?

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

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

发布评论

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

评论(1

笑着哭最痛 2024-11-20 23:04:04

您可以下载源代码并自行编译,但我读到这很痛苦,我认为该项目可能已经死了:

CocoaMySQL-src

但是,直接从 iPhone/iPad 应用程序连接到远程数据库是一个非常糟糕的主意。想象一下,某人拥有一部越狱的 iPhone 和一个简单的数据包嗅探器……某人很容易危及您数据库的安全。

完成此操作的最佳方法是通过远程数据库服务器上的 Web 服务器将其包装在 php 中。然后,您可以使用简单的 http POST 请求在数据库上运行查询,并让页面返回 xml/json/whatever。

You can download the source and compile this yourself but I have read that it is a pain and I think the project may be dead:

CocoaMySQL-src

However, connecting to a remote DB directly from an iPhone/iPad App is a very bad idea. Imagine someone with a jailbroken iPhone and a simple packet sniffer.... It would be incredibly easy for someone to compromise the security of your Database.

The best way to acomplish this is to wrap it in php via a web server on your remote Database server. You can then run a query on the DB with a simple http POST request and have the page return xml/json/whatever.

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