Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个包含 2 个表的 android 应用程序。我在 DDMS 选项卡下看到了表格。这两个表包含我的应用程序的一些重要数据(例如:2000 条记录的用户名和密码)。但是当我在设备上安装我的应用程序时,我看不到表格。
此外,在设备中,当我运行我的应用程序时,它会创建一个新表。此表不包含任何记录。因此,当我检查用户名和密码时,它不会返回任何行,这会影响我的应用程序。
所以我需要在安装apk文件的时候将这两个表复制到设备中。有没有办法做到这一点?
You can fetching your database tables records using
SQLiteDatabase myDB = this.openOrCreateDatabase("test.sqlite", SQLiteDatabase.OPEN_READWRITE, null); Cursor c = myDB.rawQuery("select a, b from abc", null);