PyMySQL¶
Installation¶
Usage¶
To access to MySQL, get connection to the database first and then execute relative SQLs with cursor. Following is an example.
import pymysql.cursors
connection = pymysql.connect(host='localhost', port=3306, user='root', password='1234', database='example')
cursor = connection.cursor()
sql = 'select * from example.user'
cursor.execute(sql)
results = cursor.fetchall()
for result in results:
print(result)
cursor.close()
connection.close()