本文转载于:
用Python操作Mysql
平时的主要编程语言是Java,开发时也主要用Mysql,经常为了测试,调试的目的需要操作数据库,比如备份,插入测试数据,修改测试数据,有些
时候不能简单的用SQL就能完成任务,或都很好的完成任务,用Java写又有点太麻烦了,就想到了Python。Python语法简洁,不用编译,可以经
较好的完成任务。今天看了下Python对Mysql的操作,做一下记录。
首先,安装需要的环境,Mysql和Python就不说了,必备的东西。
主要是安装的MySQLdb,可以去sf.net下载,具体地址是
如果用Ubuntu,直接
sudo apt-get install python-mysqldb
安装完成之后可以在Python解释器中测试一下
输入
如果不报错,就证明安装成功了,可能继续了
MySQLdb在Python中也就相当于JAVA中的MySQL的JDBC Driver,Python也有类似的数据接口规范Python DB
API,MySQLdb就是Mysql的实现。操作也比较简单和其它平台或语言操作数据库一样,就是建立和数据库系统的连接,然后给数据库输入SQL,再
从数据库获取结果。
先写一个最简单的,创建一个数据库:
-
-
-
-
-
-
-
-
-
- import MySQLdb
-
-
- conn = MySQLdb.connect(host='localhost', user='root',passwd='longforfreedom')
-
-
- cursor = conn.cursor()
-
- cursor.execute()
-
-
- cursor.close();
创建数据库,创建表,插入数据,插入多条数据
-
-
-
-
-
-
-
-
-
- import MySQLdb
-
-
- conn = MySQLdb.connect(host='localhost', user='root',passwd='longforfreedom')
-
-
- cursor = conn.cursor()
-
- cursor.execute()
-
-
- conn.select_db('python');
-
- cursor.execute()
-
- value = [1,"inserted ?"];
-
-
- cursor.execute("insert into test values(%s,%s)",value);
-
- values=[]
-
-
-
- for i in range(20):
- values.append((i,'Hello mysqldb, I am recoder ' + str(i)))
-
-
- cursor.executemany(,values);
-
-
- cursor.close();
查询和插入的流程差不多,只是多了一个得到查询结果的步骤
-
-
-
-
-
-
-
-
-
-
-
-
-
- import MySQLdb
-
- conn = MySQLdb.connect(host='localhost', user='root', passwd='longforfreedom',db='python')
-
- cursor = conn.cursor()
-
- count = cursor.execute('select * from test')
-
- print '总共有 %s 条记录',count
-
-
- print "只获取一条记录:"
- result = cursor.fetchone();
- print result
-
- print 'ID: %s info: %s' % result
-
-
- print "只获取5条记录:"
- results = cursor.fetchmany(5)
- for r in results:
- print r
-
- print "获取所有结果:"
-
- cursor.scroll(0,mode='absolute')
-
- results = cursor.fetchall()
- for r in results:
- print r
- conn.close()
阅读(602) | 评论(0) | 转发(0) |