How can i use MYSQL database connection in iphone application useing cocos2d?(如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?)
问题描述
我正在做项目,我需要连接 MYSQL 数据库.我成功在我的项目中连接 SQLite(使用 cocos2d).但我无法在我的项目中连接 MYSQL 数据库.我任何人都喜欢这样做,而不是帮助我了解如何连接.给我必要的信息.
I am working on project and i need to connect MYSQL database. I am success to connect SQLite in my project ( using cocos2d).But i can not connect MYSQL database in my project. I any one do like this than help me for how to connect . Give me the necessary information.
推荐答案
您将无法直接从 iPhone 连接到 MySQL.您必须使用一些中间层,例如带有 PHP 的 Web 应用程序.
You will not be able to connect to MySQL directly from the iPhone. You must use some intermediate layer such as a Web application with PHP.
所以,你会得到这样的东西:
So, you will have something like this:
- iPhone 使用 HTTP 向 WebServer 发布请求
- Web 服务器连接到 MySQL 数据库
- Web 服务器向 iPhone 返回数据(XML、纯文本)
- iPhone 处理数据
您可以使用此技术来查询和插入/更新/删除数据.
You can use this technique to query and insert/update/delete data.
这篇关于如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01