python 連接資料庫操作, 方法如下:
在本機的mysql 資料庫中有一個名為yao的函式庫,其中有一個名為user的表,表中的內容如圖
下面,則是python連接資料庫的方法,及找出表中的內容,程式碼如下:
##
#! /usr/bin/python # filename conn.py import MySQLdb # 载入连接数据库模块 try: # 尝试连接数据库 conn = MySQLdb.connect("localhost","root","www","yao",charset="utf8") # 定义连接数据库的信息 except MySQLdb.OperationalError, message: # 连接失败提示 print "link error" cursor=conn.cursor() #定义连接对象 cursor.execute("select * from user") #使用cursor提供的方法来执行查询语句 data=cursor.fetchall() #使用fetchall方法返回所有查询结果 print data #打印查询结果 cursor.close() #关闭cursor对象 conn.close() #关闭数据库链接