python使用mysql数据库示例代码

python使用mysql数据库示例代码,第1张

概述一,安装mysql如果是windows用户,mysql的安装非常简单,直接下载安装文件,双击安装文件一步一步进行 *** 作即可。

一,安装MysqL@H_502_3@

如果是windows 用户,MysqL 的安装非常简单,直接下载安装文件,双击安装文件一步一步进行 *** 作即可。@H_502_3@

linux 下的安装可能会更加简单,除了下载安装包进行安装外,一般的linux 仓库中都会有MysqL ,我们只需要通过一个命令就可以下载安装:@H_502_3@

Ubuntu\deepin@H_502_3@

 >>sudo apt-get install MysqL-server  >>Sudo apt-get install MysqL-clIEnt 

centOS/redhat@H_502_3@

>>yum install MysqL

二,安装MysqL-python@H_502_3@

要想使python可以 *** 作MysqL 就需要MysqL-python驱动,它是python *** 作MysqL必不可少的模块。@H_502_3@

下载地址:https://pypi.python.org/pypi/MySQL-python/@H_502_3@

下载MysqL-python-1.2.5.zip 文件之后直接解压。进入MysqL-python-1.2.5目录:@H_502_3@

>>python setup.py install

三,测试@H_502_3@

测试非常简单,检查MysqLdb 模块是否可以正常导入。@H_502_3@

fnngj@fnngj-H24X:~/pyse$ python Python 2.7.4 (default,Sep 26 2013,03:20:56) [GCC 4.7.3] on linux2Type "help","copyright","credits" or "license" for more information.>>> import MysqLdb 

没有报错提示MysqLdb模块找不到,说明安装OK ,下面开始使用python *** 作数据库之前,我们有必要来回顾一下MysqL的基本 *** 作:@H_502_3@

四,MysqL 的基本 *** 作@H_502_3@

$ MysqL -u root -p (有密码时) $ MysqL -u root   (无密码时)
MysqL> show databases; // 查看当前所有的数据库+--------------------+| Database      |+--------------------+| information_schema || csvt        || csvt04       || MysqL       || performance_schema || test        |+--------------------+6 rows in set (0.18 sec)MysqL> use test;  //作用与test数据库Database changedMysqL> show tables;  //查看test库下面的表Empty set (0.00 sec)//创建user表,name 和password 两个字段MysqL> CREATE table user (name VARCHAR(20),password VARCHAR(20)); query OK,0 rows affected (0.27 sec)//向user表内插入若干条数据MysqL> insert into user values('Tom','1321');query OK,1 row affected (0.05 sec)MysqL> insert into user values('Alen','7875');query OK,1 row affected (0.08 sec)MysqL> insert into user values('Jack','7455');query OK,1 row affected (0.04 sec)//查看user表的数据MysqL> select * from user;+------+----------+| name | password |+------+----------+| Tom | 1321   || Alen | 7875   || Jack | 7455   |+------+----------+3 rows in set (0.01 sec)//删除name 等于Jack的数据MysqL> delete from user where name = 'Jack';query OK,1 rows affected (0.06 sec)//修改name等于Alen 的password 为 1111MysqL> update user set password='1111' where name = 'Alen';query OK,1 row affected (0.05 sec)Rows matched: 1 Changed: 1 Warnings: 0//查看表内容MysqL> select * from user;+--------+----------+| name  | password |+--------+----------+| Tom  | 1321   || Alen  | 1111   |+--------+----------+3 rows in set (0.00 sec) 

五,python *** 作MysqL数据库基础@H_502_3@

#Coding=utf-8import MysqLdbconn= MysqLdb.connect(    host='localhost',port = 3306,user='root',passwd='123456',db ='test',)cur = conn.cursor()#创建数据表#cur.execute("create table student(ID int,name varchar(20),class varchar(30),age varchar(10))")#插入一条数据#cur.execute("insert into student values('2','Tom','3 year 2 class','9')")#修改查询条件的数据#cur.execute("update student set class='3 year 1 class' where name = 'Tom'")#删除查询条件的数据#cur.execute("delete from student where age='9'")cur.close()conn.commit()conn.close() >>> conn = MysqLdb.connect(host='localhost',)

Connect() 方法用于创建数据库的连接,里面可以指定参数:用户名,密码,主机等信息。@H_502_3@

这只是连接到了数据库,要想 *** 作数据库需要创建游标。@H_502_3@

>>> cur = conn.cursor()

通过获取到的数据库连接conn下的cursor()方法来创建游标。@H_502_3@

复制代码 代码如下:@H_502_3@>>> cur.execute("create table student(ID int,age varchar(10))")@H_502_3@@H_502_3@

通过游标cur *** 作execute()方法可以写入纯SQL语句。通过execute()方法中写如SQL语句来对数据进行 *** 作。@H_502_3@

>>>cur.close()

cur.close() 关闭游标@H_502_3@

>>>conn.commit()

conn.commit()方法在提交事物,在向数据库插入一条数据时必须要有这个方法,否则数据不会被真正的插入。@H_502_3@

>>>conn.close()

Conn.close()关闭数据库连接

六,插入数据@H_502_3@

通过上面execute()方法中写入纯的SQL语句来插入数据并不方便。如:@H_502_3@

>>>cur.execute("insert into student values('2','9')")

我要想插入新的数据,必须要对这条语句中的值做修改。我们可以做如下修改:@H_502_3@

#Coding=utf-8import MysqLdbconn= MysqLdb.connect(    host='localhost',)cur = conn.cursor()#插入一条数据sqli="insert into student values(%s,%s,%s)"cur.execute(sqli,('3','Huhu','2 year 1 class','7'))cur.close()conn.commit()conn.close() 

假如要一次向数据表中插入多条值呢?@H_502_3@ 

#Coding=utf-8import MysqLdbconn= MysqLdb.connect(    host='localhost',)cur = conn.cursor()#一次插入多条记录sqli="insert into student values(%s,%s)"cur.executemany(sqli,[  ('3','1 year 1 class','6'),'Jack','7'),'Yaheng','2 year 2 class',])cur.close()conn.commit()conn.close() 

executemany()方法可以一次插入多条值,执行单挑SQL语句,但是重复执行参数列表里的参数,返回值为受影响的行数。@H_502_3@

七,查询数据@H_502_3@

也许你已经尝试了在python中通过@H_502_3@

>>>cur.execute("select * from student")

来查询数据表中的数据,但它并没有把表中的数据打印出来,有些失望。@H_502_3@

来看看这条语句获得的是什么

>>>aa=cur.execute("select * from student") >>>print aa5

它获得的只是我们的表中有多少条数据。那怎样才能获得表中的数据呢?进入python shell@H_502_3@

>>> import MysqLdb>>> conn = MysqLdb.connect(host='localhost',)>>> cur = conn.cursor()>>> cur.execute("select * from student")5L>>> cur.fetchone()(1L,'Alen','1 year 2 class','6')>>> cur.fetchone()(3L,'7')>>> cur.fetchone()(3L,'6')...>>>cur.scroll(0,'absolute') 

fetchone()方法可以帮助我们获得表中的数据,可是每次执行cur.fetchone() 获得的数据都不一样,换句话说我没执行一次,游标会从表中的第一条数据移动到下一条数据的位置,所以,我再次执行的时候得到的是第二条数据。@H_502_3@

scroll(0,'absolute') 方法可以将游标定位到表中的第一条数据。@H_502_3@

还是没解决我们想要的结果,如何获得表中的多条数据并打印出来呢?@H_502_3@

#Coding=utf-8import MysqLdbconn= MysqLdb.connect(    host='localhost',)cur = conn.cursor()#获得表中有多少条数据aa=cur.execute("select * from student")print aa#打印表中的多少数据info = cur.fetchmany(aa)for ii in info:  print iicur.close()conn.commit()conn.close() 

通过之前的print aa 我们知道当前的表中有5条数据,fetchmany()方法可以获得多条数据,但需要指定数据的条数,通过一个for循环就可以把多条数据打印出啦!执行结果如下:@H_502_3@

5(1L,'6')(3L,'7')(3L,'7')[Finished in 0.1s] 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的python使用mysql数据库示例代码全部内容,希望文章能够帮你解决python使用mysql数据库示例代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1202141.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存