I’m a noob to android and I am having trouble creating entries and retrieving data from my table. It was suggested in another post How to do i resolve IllegalArgumentException? , that i should get a dump of the .schema of the database to see if it is being constructed properly? How do i do this? Any help is greatly appreciated.
Share
In the adb shell, you can type the command
There you can see all the tables with the command
.tablesSchema of each table
pragma table_info(<table-name>)This way you can see the tables created in the emulator by your app.