J2ME 移动词典的本地数据库
我现在正在为我的最后一年项目开发一个用于手机的英语到阿拉伯语短语翻译器。 我正在使用 Eclipse (J2ME) IDE。 然而,我的项目的要求之一是使用本地数据库。 我想我会使用MySQL,因为我以前用过它。 但这个应用程序还必须与服务器连接。 因此,我不知道什么数据库适合J2ME(不包括RDMS)用于这个项目。 有人可以提供建议吗?
I'm now developing an English-to-Arabic phrase translator for a mobile phone for my final year project. I'm using the Eclipse (J2ME) IDE. However one of the requirements of my project is to use a local database. I was thinking I'd use MySQL since I have used it before. But this application also has to connect with a server. Thus, I have no idea what database is suitable for J2ME (exclude RDMS) for this project. Can anyone offer suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为“嵌入式”数据库。 基本上,它是一个通过库访问的数据库,它没有单独的服务器组件。 SQLLite 和 MySQL Embedded 就是两个例子。 由于您使用的是 Java,因此您可能需要研究一下 Apache Derby,我相信它是随 JDK 6 一起提供的。
What you're looking for is called an "embedded" database. Basically, it's a database that you access through a library, which doesn't have a separate server component. SQLLite and MySQL Embedded are two examples. Since you're using Java, you might want to look into Apache Derby, which I believe ships with JDK 6.