如何使用 J2ME 连接到任何数据库?
可能的重复:
J2ME 上的 JDBC 支持
我没有得到它。有人可以帮助我吗?
Possible Duplicate:
JDBC support on J2ME
I am not getting it. Can any one help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要做的是使用 JDBC 或类似工具从移动设备 (j2me) 访问远程数据库。
不幸的是,如果您使用 CLDC,则没有类似 JDBC 的工具可以连接到数据库,您需要手动执行此操作,即您需要将用户名、密码等自定义数据从 MIDlet 发送到 Servlet,然后 Servlet 处理数据库。这是一个示例
不需要使用Servlet (即Java)在服务器端,您可以使用任何其他服务器端语言,例如PHP等。
Probably what you are trying to do is accessing a remote database from your Mobile device (j2me) using JDBC or similar tool.
Unfortunately, if you use CLDC then there is no tool for connecting to database using JDBC like tool, you need to do it manually i.e you need to send customized data like username, password from the MIDlet to Servlet and then the servlet deals with the database. Here is a sample
It is not necessary to use Servlet (i.e Java) in server side, you can use any other server-side language like PHP etc.