安装navicat for mysql,参考:https://www.jianshu.com/p/2494e02caf63
import pymysqlecshop=pymysql.connect(‘localhost‘,‘root‘,‘root‘,‘ecshop‘) #连接数据库cus=ecshop.cursor() #创建游标对象cus.execute("SELECT VERSION()") #执行sql查询#print(dir(cus))datas=cus.fetchone() #获取单条数据print(datas)ecshop.close() #关闭数据库#print(dir(ecshop))
原文地址:https://www.cnblogs.com/canglongdao/p/12093973.html
时间: 2024-11-06 11:43:07