标签:code 关闭 count connect etc cut pytho pre pymysql
以下实例链接 Mysql 的 TESTDB 数据库:
import pymysql # 打开数据库连接
# 使用 cursor() 方法创建一个游标对象 cursor cursor = db.cursor() # 使用 execute() 方法执行 SQL 查询 cursor.execute("SELECT VERSION()") # 使用 fetchone() 方法获取单条数据. data = cursor.fetchone() print ("Database version : %s " % data) # 关闭数据库连接 db.close()
Python查询Mysql使用 fetchone() 方法获取单条数据, 使用fetchall() 方法获取多条数据。
标签:code 关闭 count connect etc cut pytho pre pymysql
原文地址:https://www.cnblogs.com/gengyufei/p/12690830.html