I'm starting in Python and database and I've had three doubts!
For example, inside my database I have a "name" column. Just to illustrate, let's say I want to get the contents of the "name" column corresponding to id = 1 and play on a Python variable called "clientName"?
How do I list the total number of existing records?
If I want to make a button in Python that navigates between records How should it be done? Is there something like cursor.next and cursor.previous, for example?
Thank you, guys!