Python笔记··By/蜜汁炒酸奶

Python对mysql数据库操作

使用MySQLdb模块。下载地址:http://sourceforge.net/projects/mysql-python/

基本操作

连接与查询

[infobg class=“warning” closebtn=“” color=“” bgcolor=“”] 1、MySQLdb.connect()用来连接,在此处指定编码,可防止导出数据时出现乱码的问题。 即con=MySQLdb.connect(user=‘root’,db=‘mysql’,passwd=‘dingjia’,host=‘localhost’) 2、所有的查询,都在连接con的一个模块cursor上面运行的,即cur=conn.cursor() 3、执行查询与接收结果(使用游标对象和execute()方法来执行sql),即count=cur.execute(‘select * from users’) 4、遍历与打印,使用for语句即可 5、cur.close()  关闭游标 6、con.commit()  提交事务 7、con.close()     关闭连接 注: 当没有游标cursor对象时候,连接对象可以使用query()方法,执行sql查询 con.query(‘create database test’) [/infobg] [toggle hide=“yes” title=“连接与查询” color=“”]

try:
    conn=MySQLdb.connect(host="localhost",user='root',passwd="",db="personalblog_db",charset='utf8')
    cur=conn.cursor()
    count=cur.execute('select * from users')
    print 'there has %s rows record' % count
    results=cur.fetchmany(count)
    for r in results:
       print r
    cur.close()
    conn.commit()
    conn.close()
except MySQLdb.Error,e:
    print "Mysql Error %d: %s"%(e.args[0],e.args[1])
1
2
3
4
5
6
7
8
9
10
11
12
13

[/toggle]

插入数据

[infobg class=“danger” closebtn=“” color=“” bgcolor=“”] 请注意一定要有**conn.commit()这句来提交事务,**要不然不能真正的插入数据。 [/infobg]

value=[1,'hi rollen']
cur.execute('insert into test values(%s,%s)',value)
1
2

更新数据

cur.execute('update test set info="I am rollen" where id=3')
1

批量插入数据

values=[]
    for i in range(20):
        values.append((i,'hi rollen'+str(i)))

    cur.executemany('insert into test values(%s,%s)',values)
1
2
3
4
5

插入数据,批量插入数据,更新数据的例子

import MySQLdb

try:
    conn=MySQLdb.connect(host='localhost',user='root',passwd='root',port=3306)
    cur=conn.cursor()

    cur.execute('create database if not exists python')
    conn.select_db('python')
    cur.execute('create table test(id int,info varchar(20))')

    value=[1,'hi rollen']
    cur.execute('insert into test values(%s,%s)',value)

    values=[]
    for i in range(20):
        values.append((i,'hi rollen'+str(i)))

    cur.executemany('insert into test values(%s,%s)',values)

    cur.execute('update test set info="I am rollen" where id=3')

    conn.commit()
    cur.close()
    conn.close()

except MySQLdb.Error,e:
     print "Mysql Error %d: %s" % (e.args[0], e.args[1])
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

参考资料

connect()参数表

[toggle hide=“yes” title=“connect()参数表” color=“”]

host,连接的数据库服务器主机名,默认为本地主机(localhost)。

user,连接数据库的用户名,默认为当前用户。

passwd,连接密码,没有默认值。

db,连接的数据库名,没有默认值。

conv,将文字映射到Python类型的字典。默认为MySQLdb.converters.conversions

cursorclass,cursor()使用的种类,默认值为MySQLdb.cursors.Cursor。

compress,启用协议压缩功能。

named_pipe,在windows中,与一个命名管道相连接。

init_command,一旦连接建立,就为数据库服务器指定一条语句来运行。

read_default_file,使用指定的MySQL配置文件。

read_default_group,读取的默认组。

unix_socket,在unix中,连接使用的套接字,默认使用TCP。

port,指定数据库服务器的连接端口,默认是3306。
charset, 编码格式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

[/toggle]

参考地址

python操作MySQL数据库 python MySQLdb的操作 Python中MySQLdb的connect的用法 python之模块(转载)

预览
Loading comments...
2 条评论
  • W

    你的文章页面,显示和隐藏文章导航的功能是怎么实现的,是不是锚文本,如何实现?

example
预览