python操作mysql数据库的简单示例详解编程语言

下面的python代码通过MySQLdb模块链接mysql数据库,然后打开数据库,并通过sql语句查询mysql的版本号,最后关闭数据库连接

#!/usr/bin/python 
  
import MySQLdb 
  
# Open database connection 
db = MySQLdb.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()

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8374.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论