Good morning!
I wonder how I can move forward and back a row in the table, I was able to move using the fetchone come back I'm not getting.
Sorry the question.
Thank all
massao
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry my English!
Good morning!
I wonder how I can move forward and back a row in the table, I was able to move using the fetchone come back I'm not getting.
Sorry the question.
Thank all
massao
Sorry, I forgot:
Linux Python 2.6 using MySQLdb.cursors.Cursor
You could try the scrool function in the cursor object.
cursor = db.cursor()
cursor.scroll(<POS>,mode='<MODE>')
where MODE is either relative or absolute, and POS is the row position.
Hello, I had achieved using cursor.fetchall
cursor.fetchall row = ()
print row
print row
print row
Thanks anyway!