I am working with a SQLite3 Database in my .NET MAUI App. The App is running on Pixel 5 - API 33 (Android 13.0 - API 33)-Emulator right now.
Right now, I am doing my SELCT-Statements to verify my stored data directly in the adb command probmpt (VS > Tools > Android > Android Adb Command Prompt...).
This command prompt is not very comfortable for me as it doesn't even provide a history of the commands I executed. Also, I always have to login first as "adb root" then run "adb shell" and within that connect to my SQLite3 database (sqlite3 /data/user/0/com.companyname.myapp/files/MyDatabaseSQLite.db3).
Is there a Database Editor I can use in combination with App-Development and connect to my database which is actually running in my Emulator. In case there is no Database Editor is there anything that at least provides some history for the commands I executed?