1
I’m very used to just using the Logcat, while debugging an application. But I realize that the Debbuger is a much more powerful tool. I can pause the state of the application and observe its variables.
I can get the cursor position and the line count the cursor has. But I can’t find the value of each column of the database using Debugger.
Wouldn’t it be logical and possible to do this using the debbuger? If that’s not possible, why?
You’re right, the cursor does not store column values anywhere. Just the position, column count and other things. Thank you!
– Nakamoto