how to view (see) the stored values in the database in android without programatically -


somebody me see values stored in database without programatically. using file explorer , command prompt

  1. using command line
    a) enter adb shell
    b) cd app directory, database file under databases folder
    c) $sqlite3 yourdb_name
    d) ## should enter command mode
    e) select * your_tablename;
  2. using ddms
    a) using ddms's file explorer b) find database file c) copy databases ypur pc d) use sqlite tool read it

good luck!!


Comments