python访问mysql数据库的实现方法(2则示例)
作者:zm2714
这篇文章主要介绍了python访问mysql数据库的实现方法,结合实例形式分析了两种Python操作MySQL数据库的相关技巧,需要的朋友可以参考下
本文实例讲述了python访问mysql数据库的实现方法。分享给大家供大家参考,具体如下:
首先安装与Python版本匹配的MySQLdb
示例一
import MySQLdb conn=MySQLdb.connect(user='root',passwd='123',db='example') cur=conn.cursor() cur.execute("select id,lastname,firstname, date_format(dob,'%Y-%m-%d %H-%i-%s'),phone from employee") ##select username,password, date_format(reg_date,'%Y-%m-%d %H-%i-%s') as date from reg_user for data in cur.fetchall(): print data cur.close() conn.commit() conn.close()
示例二
import MySQLdb conn = MySQLdb.connect(host='localhost',user='root',passwd='') cursor = conn.cursor() cursor.execute("create database python") cursor.execute('use python') cursor.execute("create table test(id int, content varchar(100))") #插入一条100条数据 for i in range(1,100): cursor.execute("insert into test values(%s,%s)",[i,'haha']) #获取数据 cursor.execute('select * from test') results = cursor.fetchall() for r in results print r conn.close()
希望本文所述对大家Python程序设计有所帮助。
您可能感兴趣的文章:
- Python3.7 pyodbc完美配置访问access数据库
- 详解js文件通过python访问数据库方法
- 对Python通过pypyodbc访问Access数据库的方法详解
- Python使用pyodbc访问数据库操作方法详解
- Python轻量级ORM框架Peewee访问sqlite数据库的方法详解
- Python的Tornado框架实现异步非阻塞访问数据库的示例
- Linux下通过python访问MySQL、Oracle、SQL Server数据库的方法
- python使用MySQLdb访问mysql数据库的方法
- Python访问纯真IP数据库脚本分享
- 在Linux中通过Python脚本访问mdb数据库的方法
- Shell、Perl、Python、PHP访问 MySQL 数据库代码实例
- python访问纯真IP数据库的代码
- 使用Python通过oBIX协议访问Niagara数据的示例