如何在 Titanium 中连接到远程 SQL 数据库
我在从 Titanium 连接到远程数据库时遇到一些问题。
我找到了一些我们可以使用的答案。
通常的方法是为服务器创建一个 Web 服务,并允许它协商客户端和服务器之间的交互,使用 JSON 来回传递数据。
但我对 JSON 一无所知,
我尝试在网上搜索但没有帮助。
谢谢。
I have some problem in connecting to remote database from Titanium.
I found some of the answer we can use
The usual way would be to create a web service for the server, and allow it to negotiate the interaction between client and server, passing data back and forth using JSON.
But i don have any idea about JSON
I tried searching on the web but of no help.
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Titanium只能理解客户端。而数据库将存在于服务器端。因此,读取数据库的唯一方法是使用后端脚本(Web 服务)来读取数据库并将详细信息以 JSON 或 XML 的形式转发到前端。
JSON 非常容易理解和学习。您可以查看 www.json.org。
Titanium can understand only the client side. Whereas the database would exist on the server side. Therefore the only way to read database is to have a backend script (web service) which would read the database and forward the details to the front end in form of JSON or XML.
JSON is very easy to understand and learn. You can checkout www.json.org.