6.9.6.2 cursor.MySQLCursorRaw 类

该类MySQLCursorRaw继承自 MySQLCursor.

MySQLCursorRaw游标在获取行时跳过从 MySQL 数据类型到 Python 类型的转换 。原始游标通常用于获得更好的性能或当你想自己进行转换时。

要创建原始游标,请raw在调用连接 cursor() 方法时使用参数。或者,要使默认情况下从连接创建的所有游标成为原始游标,请使用raw 连接参数

例子:

import mysql.connector
cnx = mysql.connector.connect()
# Only this particular cursor will be raw
cursor = cnx.cursor(raw=True)
# All cursors created from cnx2 will be raw by default
cnx2 = mysql.connector.connect(raw=True)