300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > Python MySQLdb模块连接操作mysql数据库实例

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

时间:2020-11-07 17:34:25

相关推荐

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

后端开发|Python教程

Python,MySQLdb模块,连接操作mys

后端开发-Python教程

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

windows phone app源码,vscode中输入字符,ubuntu 麒麟 中文,tomcat如何开机启动,itchat爬虫,php pecl扩展,苏州seo快排工具,写下载代码网站,小说阅读软件模板下载免费lzw

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

旅游网源码,ubuntu改清华镜像,tomcat 连接池验证,爬虫捡漏赚钱,php自动建表,盐田seo优化关键词多少钱lzw

#-*- encoding: gb2312 -*-import os, sys, stringimport MySQLdb# 连接数据库try: conn = MySQLdb.connect(host=localhost,user= oot,passwd=xxxx,db= est1)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 esql = "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()

qq骂人工具源码,链接crt和ubuntu,爬虫银行用户信息,php hfs,seo131lzw

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。