python使用mysql数据库

柔光的暖阳◎ 2022-08-18 03:02 137阅读 0赞

一,安装mysql

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

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

Ubuntu\deepin

  1. sudo apt-get install mysql-server
  2. sudo apt-get install mysql-client

centOS/redhat

  1. yum install mysql

二,安装MySQL-python

  1. 要想使python可以操作mysql 就需要MySQL-python驱动,它是python 操作mysql必不可少的模块。

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

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

  1. python setup.py install

三,测试

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

  1. fnngj@fnngj-H24X:~/pyse$ python
  2. Python 2.7.4 (default, Sep 26 2013, 03:20:56)
  3. [GCC 4.7.3] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import MySQLdb

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

四,mysql 的基本操作

$ mysql -u root -p (有密码时)

$ mysql -u root (无密码时)

复制代码

  1. mysql> show databases; // 查看当前所有的数据库
  2. +--------------------+
  3. | Database |
  4. +--------------------+
  5. | information_schema |
  6. | csvt |
  7. | csvt04 |
  8. | mysql |
  9. | performance_schema |
  10. | test |
  11. +--------------------+
  12. 6 rows in set (0.18 sec)
  13. mysql> use test; //作用与test数据库
  14. Database changed
  15. mysql> show tables; //查看test库下面的表
  16. Empty set (0.00 sec)
  17. //创建user表,name 和password 两个字段
  18. mysql> CREATE TABLE user (name VARCHAR(20),password VARCHAR(20)); Query OK, 0 rows affected (0.27 sec)
  19. //向user表内插入若干条数据
  20. mysql> insert into user values('Tom','1321');
  21. Query OK, 1 row affected (0.05 sec)
  22. mysql> insert into user values('Alen','7875');
  23. Query OK, 1 row affected (0.08 sec)
  24. mysql> insert into user values('Jack','7455');
  25. Query OK, 1 row affected (0.04 sec)
  26. //查看user表的数据
  27. mysql> select * from user;
  28. +------+----------+
  29. | name | password |
  30. +------+----------+
  31. | Tom | 1321 |
  32. | Alen | 7875 |
  33. | Jack | 7455 |
  34. +------+----------+
  35. 3 rows in set (0.01 sec)
  36. //删除name 等于Jack的数据
  37. mysql> delete from user where name = 'Jack';
  38. Query OK, 1 rows affected (0.06 sec)
  39. //修改name等于Alen 的password 为 1111
  40. mysql> update user set password='1111' where name = 'Alen';
  41. Query OK, 1 row affected (0.05 sec)
  42. Rows matched: 1 Changed: 1 Warnings: 0
  43. //查看表内容
  44. mysql> select * from user;
  45. +--------+----------+
  46. | name | password |
  47. +--------+----------+
  48. | Tom | 1321 |
  49. | Alen | 1111 |
  50. +--------+----------+
  51. 3 rows in set (0.00 sec)

复制代码

五,python 操作mysql数据库基础

复制代码

  1. #coding=utf-8
  2. import MySQLdb
  3. conn= MySQLdb.connect(
  4. host='localhost',
  5. port = 3306,
  6. user='root',
  7. passwd='123456',
  8. db ='test',
  9. )
  10. cur = conn.cursor()
  11. #创建数据表
  12. #cur.execute("create table student(id int ,name varchar(20),class varchar(30),age varchar(10))")
  13. #插入一条数据
  14. #cur.execute("insert into student values('2','Tom','3 year 2 class','9')")
  15. #修改查询条件的数据
  16. #cur.execute("update student set class='3 year 1 class' where name = 'Tom'")
  17. #删除查询条件的数据
  18. #cur.execute("delete from student where age='9'")
  19. cur.close()
  20. conn.commit()
  21. conn.close()

复制代码

conn = MySQLdb.connect(host=’localhost’,port = 3306,user=’root’, passwd=’123456’,db =’test’,)

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

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

cur = conn.cursor()

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

cur.execute(“create table student(id int ,name varchar(20),class varchar(30),age varchar(10))”)

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

cur.close()

cur.close() 关闭游标

conn.commit()

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

conn.close()

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

六,插入数据

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

cur.execute(“insert into student values(‘2’,’Tom’,’3 year 2 class’,’9’)”)

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

复制代码

  1. #coding=utf-8
  2. import MySQLdb
  3. conn= MySQLdb.connect(
  4. host='localhost',
  5. port = 3306,
  6. user='root',
  7. passwd='123456',
  8. db ='test',
  9. )
  10. cur = conn.cursor()
  11. #插入一条数据
  12. sqli="insert into student values(%s,%s,%s,%s)"
  13. cur.execute(sqli,('3','Huhu','2 year 1 class','7'))
  14. cur.close()
  15. conn.commit()
  16. conn.close()

复制代码

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

复制代码

  1. #coding=utf-8
  2. import MySQLdb
  3. conn= MySQLdb.connect(
  4. host='localhost',
  5. port = 3306,
  6. user='root',
  7. passwd='123456',
  8. db ='test',
  9. )
  10. cur = conn.cursor()
  11. #一次插入多条记录
  12. sqli="insert into student values(%s,%s,%s,%s)"
  13. cur.executemany(sqli,[
  14. ('3','Tom','1 year 1 class','6'),
  15. ('3','Jack','2 year 1 class','7'),
  16. ('3','Yaheng','2 year 2 class','7'),
  17. ])
  18. cur.close()
  19. conn.commit()
  20. conn.close()

复制代码

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

七,查询数据

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

cur.execute(“select * from student”)

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

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

aa=cur.execute(“select * from student”)

print aa

5

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

复制代码

  1. >>> import MySQLdb
  2. >>> conn = MySQLdb.connect(host='localhost',port = 3306,user='root', passwd='123456',db ='test',)
  3. >>> cur = conn.cursor()
  4. >>> cur.execute("select * from student")
  5. 5L
  6. >>> cur.fetchone()
  7. (1L, 'Alen', '1 year 2 class', '6')
  8. >>> cur.fetchone()
  9. (3L, 'Huhu', '2 year 1 class', '7')
  10. >>> cur.fetchone()
  11. (3L, 'Tom', '1 year 1 class', '6')
  12. ...
  13. >>>cur.scroll(0,'absolute')

复制代码

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

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

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

复制代码

  1. #coding=utf-8
  2. import MySQLdb
  3. conn= MySQLdb.connect(
  4. host='localhost',
  5. port = 3306,
  6. user='root',
  7. passwd='123456',
  8. db ='test',
  9. )
  10. cur = conn.cursor()
  11. #获得表中有多少条数据
  12. aa=cur.execute("select * from student")
  13. print aa
  14. #打印表中的多少数据
  15. info = cur.fetchmany(aa)
  16. for ii in info:
  17. print ii
  18. cur.close()
  19. conn.commit()
  20. conn.close()

复制代码

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

复制代码

  1. 5
  2. (1L, 'Alen', '1 year 2 class', '6')
  3. (3L, 'Huhu', '2 year 1 class', '7')
  4. (3L, 'Tom', '1 year 1 class', '6')
  5. (3L, 'Jack', '2 year 1 class', '7')
  6. (3L, 'Yaheng', '2 year 2 class', '7')
  7. [Finished in 0.1s]

复制代码

发表评论

表情:
评论列表 (有 0 条评论,137人围观)

还没有评论,来说两句吧...

相关阅读