码迷,mamicode.com
首页 > 数据库 > 详细

Python MySQL的基本使用

时间:2017-08-11 20:31:25      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:htm   html   log   www.   port   pad   ase   .exe   lan   

1. 安装

MySQLdb是用于Python链接Mysql数据库的接口,它实现了 Python 数据库API规范V2.0,基于MySQL C API上建立的
其安装方法如下

# yum install python-devel
# pip install MySQLClient

2. 基本使用

基本使用方法如下图

技术分享

下面的代码查询test数据库中user表中所有项

import MySQLdb
 
try:
    conn=MySQLdb.connect(host=localhost,user=root,passwd=root,db=test,port=3306)
    cur=conn.cursor()
    cur.execute(select * from user)
    conn.commit()
    cur.close()
    conn.close()
except MySQLdb.Error,e:
     print "Mysql Error %d: %s" % (e.args[0], e.args[1])

参考:
<python操作mysql数据库>
<Python操作MySQL数据库>
<Python使用MySQL数据库的方法以及一个实例>
<PEP 249 -- Python Database API Specification v2.0>

Python MySQL的基本使用

标签:htm   html   log   www.   port   pad   ase   .exe   lan   

原文地址:http://www.cnblogs.com/hzl6255/p/7347787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!