SQLite 数据库到 Android

发布于 2024-10-22 20:46:28 字数 172 浏览 2 评论 0原文

我有一个要求,我必须将数据从文本移动到 Android 上的 SQLite DB 中。

一种方法是将文本文件移动到资产管理器,然后我可以从那里将数据插入数据库。

有什么方法可以使用桌面应用程序将所有数据插入到 SQlite DB 中,然后将 SQLite DB 与 android 应用程序一起发送

I have a requirement, where I have to move data from text into SQLite DB on Android.

One way to do this was to move the text file to asset manager and from there I can insert data into the DB.

Is there any way through which I can insert all the data into the SQlite DB using Desktop app and then just ship the SQLite DB with the android app

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

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

发布评论

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

评论(3

毁梦 2024-10-29 20:46:28

这应该对你有帮助。

在桌面上准备 sqllite,然后将其传输到 android

http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/

This should help you.

Prepare the sqllite in desktop and then transfer it over to android

http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/

少钕鈤記 2024-10-29 20:46:28

根据需要输入的数据量,您也可以在应用程序内执行此操作。例如

 void InsertDepts(SQLiteDatabase db)
     {
         ContentValues cv=new ContentValues();
            cv.put(colDeptID, 1);
            cv.put(colDeptName, "Sales");
            db.insert(deptTable, colDeptID, cv);
            cv.put(colDeptID, 2);
            cv.put(colDeptName, "IT");
            db.insert(deptTable, colDeptID, cv);
            cv.put(colDeptID, 3);
            cv.put(colDeptName, "HR");
            db.insert(deptTable, colDeptID, cv);
            db.insert(deptTable, colDeptID, cv);

     }

Depending on how much data needs to be input, you could also do it from within the application. E.g.

 void InsertDepts(SQLiteDatabase db)
     {
         ContentValues cv=new ContentValues();
            cv.put(colDeptID, 1);
            cv.put(colDeptName, "Sales");
            db.insert(deptTable, colDeptID, cv);
            cv.put(colDeptID, 2);
            cv.put(colDeptName, "IT");
            db.insert(deptTable, colDeptID, cv);
            cv.put(colDeptID, 3);
            cv.put(colDeptName, "HR");
            db.insert(deptTable, colDeptID, cv);
            db.insert(deptTable, colDeptID, cv);

     }
白衬杉格子梦 2024-10-29 20:46:28

玩得开心:

http://sqlitebrowser.sourceforge.net/index.html

编辑:

然后StackOverflow 上已经有解决方案:
发布带有数据库的应用

Have fun:

http://sqlitebrowser.sourceforge.net/index.html

Edit:

and then the solution is already on StackOverflow:
Ship an application with a database

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