菜鸟教程小白 发表于 2022-12-12 22:21:52

sql - 直接从 iPhone 到在线服务器执行 SQL 查询


                                            <p><p>我是一个新手,倾向于做一个简单的 iOS 应用程序。 </p>

<p>我们的任务是制作一个应用程序,为一个人进行注册,然后将该数据上传到在线服务器。 </p>

<p>具体来说,我想<code>insert</code>、<code>delete</code>、<code>update</code>数据直接到在线服务器。 </p>

<p>谁能告诉我我需要做什么(工具、库...)? </p>

<p>我与 SQlite 合作为 iPhone 制作了一个本地数据库,它运行良好,现在是关于处理在线服务器。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>执行远程请求有两种方式:</p>

<p>1) <a href="https://github.com/smhuang426/MySqueakQl" rel="noreferrer noopener nofollow">https://github.com/smhuang426/MySqueakQl</a> - 这是远程访问数据库的“基本”实现。 <a href="http://www.karlkraft.com/index.php/2010/09/17/mysql-for-iphone-and-osx/" rel="noreferrer noopener nofollow">http://www.karlkraft.com/index.php/2010/09/17/mysql-for-iphone-and-osx/</a> - 更高级的,在文章中你可能会一些说明如何使用这个框架。在这种情况下,您使用 SQL C API,并且可以编写自己的特殊类。示例:<a href="http://blog.iosplace.com/?p=30" rel="noreferrer noopener nofollow">http://blog.iosplace.com/?p=30</a> , <a href="http://zetcode.com/tutorials/mysqlcapitutorial/" rel="noreferrer noopener nofollow">http://zetcode.com/tutorials/mysqlcapitutorial/</a>和 C API 的描述 <a href="http://dev.mysql.com/doc/refman/5.0/en/c-api-function-overview.html" rel="noreferrer noopener nofollow">http://dev.mysql.com/doc/refman/5.0/en/c-api-function-overview.html</a> </p>

<p>2) 在线服务器上发布的 PHP 脚本,您使用发送到该脚本的异步 ASIHTTP(或普通 NSRequest),脚本直接与 tis 服务器上的 sql DB 一起工作。示例(<a href="https://stackoverflow.com/questions/11715521/ios-no-communication-between-iphone-app-and-mysql-database-via-php" rel="noreferrer noopener nofollow">iOS no communication between iPhone app and MySQL database via PHP</a>)。在这种情况下,您获得了更高的安全性,但也存在一些限制,例如降低应用程序的速度和服务器必须提供 PHP。 </p>

<p>祝你好运!</p></p>
                                   
                                                <p style="font-size: 20px;">关于sql - 直接从 iPhone 到在线服务器执行 SQL 查询,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11813890/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11813890/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: sql - 直接从 iPhone 到在线服务器执行 SQL 查询