Updated on 2025-10-23 GMT+08:00

connection.cursor()

Description

This method returns a new cursor object.

Prototype

conn=pymysql.connect(database="databasename",user="username",password="********",host="127.0.0.1",port=portnum)
conn.cursor()

Return Value

Cursor object (used for cursors that are programmed using Python in the entire database)

Examples

For details, see Examples: Common Operations.