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


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

10.6.5 cursor.MySQLCursorBufferedDict 类

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

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

要获取返回字典的缓冲游标,请在实例化新的字典游标时添加 buffered 参数

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