12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Androidのアプリ開発中にsqlite3のデータをPCで確認する方法

Posted at

開発中のアプリでのみ利用出来ます。
AndroidManifest.xmlのandroid:debuggableをtrueにして下さい。

アプリのパッケージからSDカードにデータを移す

adb -d shell "run-as パッケージ名 cat /data/data/パッケージ名/databases/データベース名.db > /sdcard/app.db"

コピーしたデータをパソコンにもってくる

adb pull /sdcard/app.db

後はsqlite3を使ってdbにログインし、SQLを実行してデータを参照する事ができます

sqlite3 app.db
12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?