[+/-]
cursor.MySQLCursorMySQLCursor.callproc(procname, args=())MySQLCursor.close()MySQLCursor.execute(operation, params=None,
multi=False)MySQLCursor.executemany(operation, seq_params)MySQLCursor.fetchall()MySQLCursor.fetchmany(size=1)MySQLCursor.fetchone()MySQLCursor.fetchwarnings()MySQLCursor.stored_results()MySQLCursor.column_namesMySQLCursor.lastrowidMySQLCursor.statementMySQLCursor.with_rows
The MySQLCursor class is used to instantiate
objects that can execute operations such as SQL queries. They
interact with the MySQL server using a
MySQLConnection object.

User Comments
Add your own comment.