根据您使用的 python 环境,pymysql 包可以是使用以下方法之一安装。
# From python console
pip install pymysql
#Using Anaconda
conda install -c anaconda pymysql
# Add modules using any python IDE
pymysql
现在我们可以使用以下代码连接Mysql环境。连接后我们正在查找数据库的版本。
import pymysql
# Open database connection
db = pymysql.connect(“localhost”,”testuser”,”test123″,”TESTDB” )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# execute SQL query using execute() method.
cursor.execute(“SELECT VERSION()”)
# Fetch a single row using fetchone() method.
data = cursor.fetchone()
print (“Database version : %s ” % data)
# disconnect from server
db.close()
运行上面的代码给我们以下结果 –
Database version : 8.0.19
为了执行数据库命令,我们创建一个数据库游标和一个要传递到该游标的 Sql 查询。然后我们使用cursor.execute方法来获取游标执行的结果。
import pymysql
# Open database connection
db = pymysql.connect(“localhost”,”username”,”paswd”,”DBname” )
# prepare a cursor object using cursor() method
cursor = db.cursor()
sql = “SELECT * FROM EMPLOYEE
WHERE INCOME > ‘%d'” % (1000)
try:
# Execute the SQL command
cursor.execute(sql)
# Fetch all the rows in a list of lists.
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
sex = row[3]
income = row[4]
# Now print fetched result
print “fname=%s,lname=%s,age=%d,sex=%s,income=%d” %
(fname, lname, age, sex, income )
except:
print “Error: unable to fecth data”
# disconnect from server
db.close()
运行上面的代码给我们以下结果 –
fname = Jack, lname = Ma, age = 31, sex = M, income = 12000
如果您发现该资源为电子书等存在侵权的资源或对该资源描述不正确等,可点击“私信”按钮向作者进行反馈;如作者无回复可进行平台仲裁,我们会在第一时间进行处理!
添加我为好友,拉您入交流群!
请使用微信扫一扫!