使用Android连接mysql数据库
我将尝试写入需要访问服务器上运行的远程数据库的应用程序。我知道在编写java应用程序时可以使用jdbc,但是在android中也可以这样做吗?或者有没有更好的办法。任何方向将不胜感激。
I'm going to attempt to write to an app that needs to access a remote database running on a server. I know you can use jdbc when writing java applications, but can this be done in android too? Or is there a better way. Any direction would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在服务器上实现根据输入参数(例如 userId)表现不同的服务,而不是尝试直接通过设备连接。另外,出于性能原因,我建议使用 json 而不是 xml 的响应格式。
I'd recommend implementing services on the server that would behave differently based on input parameters (e.g. userId) rather than try to connect directly through devices. Also, for performance reasons, I'd recommend the response format of json over xml.