What I do is the following friend.
First, I download the sqliteBroswer which is a program that will help us a lot with this
link
Later what we will do is take a copy of the database that you have in your application. For this we will use the command console and ADB (Android device Bridge). You must assign the path of the ADB to an environment variable of your system to use it without any problem.
And now, with that you only have to use the following command.
adb pull /data/data/com.example.app.development/databases/App.db
Where the route would refer to the route where your app is installed.
In this way we will make a copy of your database at any time and open it with the program mentioned at the beginning and so we can see all the information that is in the database of your app at any time.
I hope this has been helpful, anything will be pending in the comments.