gpt4 book ai didi

android - 我如何在 Eclipse IDE 中查看我的 sqlite 数据库结构

转载 作者:行者123 更新时间:2023-11-30 01:11:59 24 4
gpt4 key购买 nike

我在 sqlite 数据库中创建了一个表,我正在执行所有 CRUD 操作,但我想查看我的数据库模式。我尝试通过 eclipse IDE 的 DDMS 工具,但没有数据库。如何查看我的数据库。我使用的是真实设备。请帮我。提前致谢

最佳答案

你可以使用这个方法:

STEP 1:首先通过编写函数导出数据库:

public static void backupDatabase() throws IOException {
//Open your local db as the input stream
String inFileName = "/data/data/com.myapp.main/databases/MYDB";
File dbFile = new File(inFileName);
FileInputStream fis = new FileInputStream(dbFile);

String outFileName = Environment.getExternalStorageDirectory()+"/MYDB";
//Open the empty db as the output stream
OutputStream output = new FileOutputStream(outFileName);
//transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer))>0){
output.write(buffer, 0, length);
}
//Close the streams
output.flush();
output.close();
fis.close();
}

取自Stack overflow link

然后下载 DB Browser for SQLite 并在那里打开数据库文件。 DB Browser for SQLite

一切顺利。如果您在实现过程中发现任何困难,请通知我。

关于android - 我如何在 Eclipse IDE 中查看我的 sqlite 数据库结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38319866/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com