Accessing Android SQLite Database
When developing Android Application that stores data in SQLite Database, it is very useful to directly access the Database on the Emulator or Real Device from the Terminal to Debug or Test. For instance as a Developer I want to verify data is saved in Database, debugging SQL Queries etc. Here are the steps to be followed to connect to the SQLDatabase of the Device From the Command prompt First Start the Android Emulator or connect a Android Device with the System. Once The Device is connected we can access the Shell of the device though ADB. Note that ADB should be installed on the System from where we want to access the Android Database(s). After the Device is connected open a Terminal and follow the following steps. 1) Get The List of Active Devices $adb devices List of devices attached emulator-5554 device This will give list of emulator or Devices connected to the System. (For me it is showing only one active Emulator emulator-5554) Say we want to connect to...