文档首页
MySQL Connector/Python 开发者指南
相关文档 下载本手册
PDF (US Ltr) - 0.7Mb
PDF (A4) - 0.7Mb


MySQL Connector/Python 开发者指南  /  ...  /  cursor.MySQLCursorBufferedNamedTuple 类

10.6.7 cursor.MySQLCursorBufferedNamedTuple 类

MySQLCursorBufferedNamedTuple 类继承自 MySQLCursor。此类从 Connector/Python 2.0.0 开始可用。

MySQLCursorBufferedNamedTuple 游标类似于 MySQLCursorNamedTuple 游标,但已缓冲:执行查询后,它会从服务器获取整个结果集并将行缓冲。有关缓冲的影响的信息,请参阅 第 10.6.1 节 “cursor.MySQLCursorBuffered 类”

要获取返回命名元组的缓冲游标,请在实例化新的命名元组游标时添加 buffered 参数

cursor = cnx.cursor(named_tuple=True, buffered=True)