您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

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

5b51 2022/1/14 8:17:31 python 字数 4328 阅读 333 来源 www.jb51.cc/python

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

概述

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

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

#-*- 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,%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数据库实例所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶