Python MySQLdb模块连接操作mysql数据库实例
mysql是一个优秀的开源数据库,它现在的应用非常的广泛,因此很有必要简单的介绍一下用python操作mysql数据库的方法。python操作数据库需要安装一个第三方的模块,在http://mysql-python.sourceforge.net/有下载和文档。
由于python的数据库模块有专门的数据库模块的规范,所以,其实不管使用哪种数据库的方法都大同小异的,这里就给出一段示范的代码:
#-*-encoding:gb2312-*- importos,sys,string importMySQLdb #连接数据库 try: conn=MySQLdb.connect(host='localhost',user='root',passwd='xxxx',db='test1') exceptException,e: printe sys.exit() #获取cursor对象来进行操作 cursor=conn.cursor() #创建表 sql="createtableifnotexiststest1(namevarchar(128)primarykey,ageint(4))" cursor.execute(sql) #插入数据 sql="insertintotest1(name,age)values('%s',%d)"%("zhaowei",23) try: cursor.execute(sql) exceptException,e: printe sql="insertintotest1(name,age)values('%s',%d)"%("张三",21) try: cursor.execute(sql) exceptException,e: printe #插入多条 sql="insertintotest1(name,age)values(%s,%s)" val=(("李四",24),("王五",25),("洪六",26)) try: cursor.executemany(sql,val) exceptException,e: printe #查询出数据 sql="select*fromtest1" cursor.execute(sql) alldata=cursor.fetchall() #如果有数据返回,就循环输出,alldata是有个二维的列表 ifalldata: forrecinalldata: printrec[0],rec[1] cursor.close() conn.close()