Documentation Home

11.2 _mysql_connector.MySQL()类

句法:

ccnx = _mysql_connector.MySQL(args)

该类MySQL用于打开和管理与 MySQL 服务器的连接(在本参考文献的其他地方称为实例MySQL。它还用于发送命令和 SQL 语句以及读取结果。

该类MySQL包装了 MySQL C Client API 中的大多数功能,并添加了一些额外的方便功能。

import _mysql_connector

ccnx = _mysql_connector.MySQL()
ccnx.connect(user='scott', password='password',
             host='127.0.0.1', database='employees')
ccnx.close()

MySQL该类 允许的参数是auth_plugin, buffered, charset_name, connection_timeout, raw, use_unicode这些参数对应于第 7.1 节“连接器/Python 连接参数”MySQLConnection.connect()中描述 的同名 参数,除了 对应于 . charset_namecharset