[+/-]
connection.MySQLConnection(**kwargs)MySQLConnection.close()MySQLConnection.config(**kwargs)MySQLConnection.connect(**kwargs)MySQLConnection.commit()MySQLConnection.cursor(buffered=None, raw=None,
cursor_class=None)MySQLConnection.cmd_change_user(username='',
password='', database='', charset=33)MySQLConnection.cmd_debug()MySQLConnection.cmd_init_db(database)MySQLConnection.cmd_ping()MySQLConnection.cmd_process_info()MySQLConnection.cmd_process_kill(mysql_pid)MySQLConnection.cmd_quit()MySQLConnection.cmd_query(statement)MySQLConnection.cmd_query_iter(statement)MySQLConnection.cmd_refresh(options)MySQLConnection.cmd_shutdown()MySQLConnection.cmd_statistics()MySQLConnection.disconnect()MySQLConnection.get_rows(count=None)MySQLConnection.get_row()MySQLConnection.get_server_info()MySQLConnection.get_server_version()MySQLConnection.is_connected()MySQLConnection.isset_client_flag(flag)MySQLConnection.ping(attempts=1, delay=0)MySQLConnection.reconnect(attempts=1, delay=0)MySQLConnection.rollback()MySQLConnection.set_charset_collation(charset=None,
collation=None)MySQLConnection.set_client_flags(flags)MySQLConnection.autocommitMySQLConnection.charset_nameMySQLConnection.collation_nameMySQLConnection.connection_idMySQLConnection.databaseMySQLConnection.get_warningsMySQLConnection.raise_on_warningsMySQLConnection.server_hostMySQLConnection.server_portMySQLConnection.sql_modeMySQLConnection.time_zoneMySQLConnection.unix_socketMySQLConnection.userThe MySQLConnection class is used to open and manage a connection to a MySQL server. It also used to send commands and SQL statements and read the results.

User Comments
Add your own comment.