如何将 SQLite 数据库包含在 Blackberry 应用程序中?

发布于 2024-11-03 18:13:26 字数 139 浏览 0 评论 0原文

在我的应用程序中,我有一些想要在一个屏幕上显示的静态数据。所以我将数据导入数据库并将其添加到 SD 卡中。现在该应用程序在模拟器上运行良好。但是当我创建 cod/alx 文件并将应用程序安装到设备时,数据库丢失了。任何人都可以建议在应用程序中包含此数据库的方法吗?

In my application, I have some static data that I want to display in one screen. So I imported the data to a database and added that to the SD card. Now the app is working fine on the simulator. But when I created the cod/alx file and installed the app to the device, the db is missing. Can anyone suggest the way to include this db inside the application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2024-11-10 18:13:26

将 db 文件包含在项目资源中。然后在运行时从资源中提取它并保存到 SDCard。

要提取资源,请使用 Class.getResourceAsStream(String name) 方法。

在 BB 上保存文件的起点可以是本指南:代码示例:编写文本到文件

Include the db file in the project resources. Then in run time extract it from resources and save to SDCard.

To extract a resource use Class.getResourceAsStream(String name) method.

A starting point in saving files on BB could be this guide: Code sample: Writing text to a file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文