gpt4 book ai didi

Python MySQLdb模块连接操作mysql数据库实例

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Python MySQLdb模块连接操作mysql数据库实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

mysql是一个优秀的开源数据库,它现在的应用非常的广泛,因此很有必要简单的介绍一下用python操作mysql数据库的方法。python操作数据库需要安装一个第三方的模块,在http://mysql-python.sourceforge.net/有下载和文档.

由于python的数据库模块有专门的数据库模块的规范,所以,其实不管使用哪种数据库的方法都大同小异的,这里就给出一段示范的代码:

?
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#-*- encoding: gb2312 -*-
import os, sys, string
import MySQLdb
 
# 连接数据库 
try :
   conn = MySQLdb.connect(host = 'localhost' ,user = 'root' ,passwd = 'xxxx' ,db = 'test1' )
except Exception, e:
   print e
   sys.exit()
 
# 获取cursor对象来进行操作
 
cursor = conn.cursor()
# 创建表
sql = "create table if not exists test1(name varchar(128) primary key, age int(4))"
cursor.execute(sql)
# 插入数据
sql = "insert into test1(name, age) values ('%s', %d)" % ( "zhaowei" , 23 )
try :
   cursor.execute(sql)
except Exception, e:
   print e
 
sql = "insert into test1(name, age) values ('%s', %d)" % ( "张三" , 21 )
try :
   cursor.execute(sql)
except Exception, e:
   print e
# 插入多条
 
sql = "insert into test1(name, age) values (%s, %s)"
val = (( "李四" , 24 ), ( "王五" , 25 ), ( "洪六" , 26 ))
try :
   cursor.executemany(sql, val)
except Exception, e:
   print e
 
#查询出数据
sql = "select * from test1"
cursor.execute(sql)
alldata = cursor.fetchall()
# 如果有数据返回,就循环输出, alldata是有个二维的列表
if alldata:
   for rec in alldata:
     print rec[ 0 ], rec[ 1 ]
 
 
cursor.close()
 
conn.close()

  。

最后此篇关于Python MySQLdb模块连接操作mysql数据库实例的文章就讲到这里了,如果你想了解更多关于Python MySQLdb模块连接操作mysql数据库实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com