Inspecting SQLite

  1. Start Running the Android Database Application.
  2. In order to access the SQLite database from the Android Studio, the application has to be active.

  3. Open the Database Inspector.
  4. Pick the following Android Studio options:
     View ⇒ Tool Windows ⇒ App Inspection ⇒ Database Inspector

  1. Enter the SQL Queries to Inspect the SQLite.
  2. The table schema is given as follows:
       create table  comments(
         _id      integer primary key autoincrement,
         comment  text not null );
    The SQLite SQL commands can be found from here.