python语言的易用性不言而喻,使用python访问数据库也及其方便。简单给出一个示例程序。
在使用connect函数连接数据库时,需要给出数据库的相关连接方式,比如地址(host),端口(port),用户名(user)、密码(passwd),以及数据库的名称(db)。
# -*- coding: utf-8 -*-
import sys
import MySQLdb
reload(sys)
sys.setdefaultencoding('utf-8')
def access_db():
conn = MySQLdb.connect(host='',port=,user='',passwd='',charset='utf8',db='')
cur=conn.cursor()
try:
sql = 'select col_name from table_name;'
cur.execute(sql)
conn.commit()
rows = cur.fetchall()
for x in rows:
print x
except Exception, e:
print e
conn.commit()
cur.close()
conn.close()
if __name__ == "__main__":
access_db()
在使用connect函数连接数据库时,需要给出数据库的相关连接方式,比如地址(host),端口(port),用户名(user)、密码(passwd),以及数据库的名称(db)。
# -*- coding: utf-8 -*-
import sys
import MySQLdb
reload(sys)
sys.setdefaultencoding('utf-8')
def access_db():
conn = MySQLdb.connect(host='',port=,user='',passwd='',charset='utf8',db='')
cur=conn.cursor()
try:
sql = 'select col_name from table_name;'
cur.execute(sql)
conn.commit()
rows = cur.fetchall()
for x in rows:
print x
except Exception, e:
print e
conn.commit()
cur.close()
conn.close()
if __name__ == "__main__":
access_db()
作者:wangchongxiu 发表于2013-6-6 0:21:29 原文链接
阅读:80 评论:0 查看评论