如何将数据库导入到 Navicat Lite 或 Titanium 中的 sqlitemanager

发布于 2024-12-18 22:03:48 字数 182 浏览 2 评论 0原文

在我的钛应用程序中,我可以创建数据库并访问它。但我不知道如何将数据库导入到查询浏览器中,例如 Navicat Lite 或 Firefox 上的 sqlitemanager 扩展。

我正在Android平台上工作。我的 Titanium SDK 版本是 1.7.5 操作系统:ubuntu 如何将数据库导入 Navicat Lite?

In my titanium application I can able to create the database and access it.But I don't know how to import my database in into Query Browsers like Navicat Lite or sqlitemanager extension on Firefox.

I am working on Android Platform. My Titanium SDK verison is 1.7.5 Operating System : ubuntu
how do I import my database into Navicat Lite?

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

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

发布评论

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

评论(2

陌生 2024-12-25 22:03:48

要获取数据库文件,

请转到放置 Android SDK 的文件夹。在你的android SDK中有一个名为tools的文件夹。打开该文件夹。在工具文件夹中,您可以找到名为 DDMS 的工具。打开该 DDMS 工具。

在 DDMS 中打开设备菜单并选择文件资源管理器。现在您将有一个新窗口,其中包含当前打开的模拟器的所有文件。现在您的应用程序的数据库文件路径将是

data/data/您的应用程序 id(com.org.etc 等)/databases/dbfilename.db

将此数据库文件从 DDMS 导出到您的本地目录,例如桌面或您想要的任何位置。您可以在 sqlitemanager 中打开该文件。

To get your database file,

Go to the folder where your android SDK is placed. In your android SDK there is a folder named tools. open that folder. In the tools folder you can find a tool named DDMS. Open that DDMS tool.

In DDMS open the device menu and select file explorer. Now you will have a new window which contains all the files of your currently opened EMULATOR. Now your database file path of your app will be ,

data/data/your application id(com.org.etc etc)/databases/dbfilename.db

export this DB file from DDMS to your local directory like desktop or any where you want. than you can open that file in your sqlitemanager.

马蹄踏│碎落叶 2024-12-25 22:03:48

在我的Mac上,Titanium将SQLite DB放在/Users/myusername/Library/Application Support/iPhone Simulator/4.3.2/Applications/ ...然后有一个GUID/Library/Application Support/database/my sqlite db

我的感觉是对于 Droids,将会创建一个类似的模拟器文件夹。

另外,我相信在 Titanium Studio 中,您可以使用 Ti.Filesystem.applicationSupportDirectory 找到数据库的应用程序支持路径(也许只是提醒这个值......还没有尝试过,但理论上应该可行!)。

On my Mac, Titanium places the SQLite DB in /Users/myusername/Library/Application Support/iPhone Simulator/4.3.2/Applications/ ... then there's a GUID/Library/Application Support/database/my sqlite db

My sense is that, for Droids, there would be a similar simulator folder created.

Also, I believe that in Titanium Studio, you can locate the app support path for the DB with Ti.Filesystem.applicationSupportDirectory (perhaps just alert this value ... have not tried that but should work in theory!).

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