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


MySQL Connector/Python 开发者指南  /  ...  /  cursor.MySQLCursor 构造函数

10.5.1 cursor.MySQLCursor 构造函数

大多数情况下,使用 MySQLConnectioncursor() 方法实例化 MySQLCursor 对象。

import mysql.connector

cnx = mysql.connector.connect(database='world')
cursor = cnx.cursor()

也可以通过将 MySQLConnection 对象传递给 MySQLCursor 来实例化游标。

import mysql.connector
from mysql.connector.cursor import MySQLCursor

cnx = mysql.connector.connect(database='world')
cursor = MySQLCursor(cnx)

连接参数是可选的。如果省略,则会创建游标,但其 execute() 方法会引发异常。