如何使用Python进行MySQL数据库管理(python mysql 库)

网友投稿 237 2022-09-07


如何使用Python进行MySQL数据库管理(python mysql 库)

本节我们将学习使用Python进行MySQL数据库管理。Python有多种用于MySQL数据库管理的模块,这里使用​​MySQLdb​​​模块。​​MySQLdb​​模块是MySQL数据库服务器的接口,用于向Python提供数据库API。

首先我们需要安装MySQL和Python的​​MySQLdb​​包,在终端中运行以下命令。

$ sudo apt install mysql-server

此命令安装MySQL服务器和各种相关软件包。安装软件包时,系统会提示我们输入MySQL root账户的密码。

以下命令用于查看要安装的​​MySQLdb​​包。

$ apt-cache search MySQLdb

以下命令安装MySQL的Python接口。

$ sudo apt-get install python3-mysqldb

现在检查MySQL是否正确安装,在终端中运行以下命令。

student@ubuntu:~$ sudo mysql -u root –p

运行命令后,如下所示。

Enter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 10Server version: 5.7.24-0ubuntu0.18.04.1 (Ubuntu)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>

运行​​sudo mysql -u root -p​​,打开MySQL控制台。使用以下部分命令列出数据库和表,并使用数据库来存储我们的操作。

列出所有数据库。

show databases;

使用数据库。

use database_name;

列出所有表。

show tables;

以上就是列出所有数据库、使用数据库和列出表的命令。

每当退出MySQL控制台并在一段时间后再次登录时,我们就必须使用​​use database_name​​命令,将所有操作保存在数据库中。我们可以通过以下示例详细了解这一点。

现在,我们在MySQL控制台中使用create database语句创建一个数据库。运行​​mysql -u root -p​​​打开MySQL控制台,然后输入在安装时设置的密码,按Enter键。最后创建数据库。本节将创建一个名为​​test​​的数据库,后面也将使用此数据库。

在终端中运行以下命令。

student@ubuntu:~/work/mysql_testing$ sudo mysql -u root –p

运行命令后,如下所示。

Enter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 16Server version: 5.7.24-0ubuntu0.18.04.1 (Ubuntu)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mysql || performance_schema || sys |+--------------------+4 rows in set (0.10 sec)mysql> create database test;Query OK, 1 row affected (0.00 sec)mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mysql || performance_schema || sys || test |+--------------------+5 rows in set (0.00 sec)mysql> use test;Database changedmysql>

上面的示例程序首先使用​​show databases​​​列出了所有数据库,接着使用​​create database​​​创建了数据库测试,然后再次使用​​show databases​​以查看数据库是否已创建。我们可以看到数据库现已创建,接着使用该数据库来存储正在进行的操作结果。

现在将创建一个用户并为该用户授予权限,运行以下命令。

mysql> create user 'test_user'@'localhost' identified by 'test123';Query OK, 0 rows affected (0.06 sec)mysql> grant all on test.* to 'test_user'@'localhost';Query OK, 0 rows affected (0.02 sec)mysql>

这里创建了一个​​test_user​​​用户,该用户的密码是​​test123​​​。然后为​​test_user​​​用户授予所有权限。最后通过​​quit​​​命令或者​​exit​​​命令退出​​MySQL​​控制台。

接下来我们将学习获取数据库版本号、创建表、向表插入一些数据、检索数据、更新数据和删除数据的示例程序。

1 获取数据库版本号

我们来看获取数据库版本号的示例程序。创建一个脚本,命名为​​get_database_version.py​​,并在其中写入以下代码。

import MySQLdb as mdbimport syscon_obj = mdb.connect('localhost', 'test_user', 'test123', 'test')cur_obj = con_obj.cursor()cur_obj.execute("SELECT VERSION()")version = cur_obj.fetchone()print ("Database version: %s " % version)con_obj.close()

在运行此脚本之前,请务必保证已经完成上述步骤,不应该跳过这些步骤。

运行脚本程序,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 get_database_version.py

输出如下。

Database version: 5.7.24-0ubuntu0.18.04.1

上面的示例程序获取了数据库版本号。首先导入了MySQLdb模块,然后根据给出的包含用户名、密码、数据库名的字符串连接了数据库,接着创建了一个用于执行SQL查询的​​cursor​​​对象。在​​execute()​​​函数中,给出了一个SQL查询语句。​​fetchone()​​​函数获取了一行查询结果。最后输出结果。​​close()​​方法用于关闭数据库连接。

2 创建表并插入数据

现在我们创建一个表,并向其中插入一些数据。创建一个脚本,命名为​​create_insert_data.py​​,并在其中写入以下代码。

import MySQLdb as mdbcon_obj = mdb.connect('localhost', 'test_user', 'test123', 'test')with con_obj: cur_obj = con_obj.cursor() cur_obj.execute("DROP TABLE IF EXISTS books") cur_obj.execute("CREATE TABLE books(Id INT PRIMARY KEY AUTO_INCREMENT, Name VARCHAR(100))") cur_obj.execute("INSERT INTO books(Name) VALUES('Harry Potter')") cur_obj.execute("INSERT INTO books(Name) VALUES('Lord of the rings')") cur_obj.execute("INSERT INTO books(Name) VALUES('Murder on the Orient Express')") cur_obj.execute("INSERT INTO books(Name) VALUES('The adventures of Sherlock Holmes')") cur_obj.execute("INSERT INTO books(Name) VALUES('Death on the Nile')")print("Table Created !!")print("Data inserted Successfully !!")

运行脚本程序,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 create_insert_data.py

输出如下。

Table Created !!Data inserted Successfully !!

要检查表是否已成功被创建,需打开MySQL控制台并运行以下命令。

student@ubuntu:~/work/mysql_testing$ sudo mysql -u root -p

运行命令后,输出如下。

Enter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 6Server version: 5.7.24-0ubuntu0.18.04.1 (Ubuntu)Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>mysql>mysql> use test;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> show tables;+----------------+| Tables_in_test |+----------------+| books |+----------------+1 row in set (0.00 sec)

我们可以看到表books已经被创建。

3 检索数据

现在我们使用​​select​​​语句从表中检索数据,这里从books表中检索数据。创建一个脚本,命名为​​retrieve_data.py​​,并在其中写入以下代码。

import MySQLdb as mdbcon_obj = mdb.connect('localhost', 'test_user', 'test123', 'test')with con_obj: cur_obj = con_obj.cursor() cur_obj.execute("SELECT * FROM books") records = cur_obj.fetchall() for r in records: print(r)

运行脚本程序,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 retrieve_data.py

输出如下。

(1, 'Harry Potter')(2, 'Lord of the rings')(3, 'Murder on the Orient Express')(4, 'The adventures of Sherlock Holmes')(5, 'Death on the Nile')

上面的示例程序从表中检索了数据。首先使用了MySQLdb模块,接着连接了数据库,并创建了一个​​cursor​​​对象来执行SQL查询。在​​execute()​​​函数中,给出了一个​​select​​语句。最后输出了查询到的记录。

4 更新数据

如果想在数据库记录中进行一些更改,我们可以使用​​update​​​语句,以下是一个​​update​​​语句的示例程序。我们创建一个脚本,命名为​​update_data.py​​,并在其中写入以下代码。

import MySQLdb as mdbcon_obj = mdb.connect('localhost', 'test_user', 'test123', 'test')cur_obj = con_obj.cursor()cur_obj.execute("UPDATE books SET Name = 'Fantastic Beasts' WHERE Id = 1")try: con_obj.commit()except: con_obj.rollback

运行脚本程序,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 update_data.py

现在检查数据库中的记录是否已更新,运行​​retrieve_data.py​​,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 retrieve_data.py

输出如下。

(1, 'Fantastic Bcasts')(2, 'Lord of the rings')(3, 'Murder on the Orient Express')(4, 'The adventures of Sherlock Holmes')(5, 'Death on the Nile')

我们可以看到ID为1的数据已更新。上面的示例程序在​​execute()中​​​给出了一个​​update​​语句,用于更新ID为1的记录。

5 删除数据

现在我们使用​​delete​​​语句从表中删除特定记录,以下是删除数据的示例程序。创建一个脚本,命名为​​delete_data.py​​,并在其中写入以下代码。

import MySQLdb as mdbcon_obj = mdb.connect('localhost', 'test_user', 'test123', 'test')cur_obj = con_obj.cursor()cur_obj.execute("DELETE FROM books WHERE Id = 5");try: con_obj.commit()except: con_obj.rollback()

运行脚本程序,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 delete_data.py

现在检查数据库中的记录是否已删除,运行​​retrieve_data.py​​,如下所示。

student@ubuntu:~/work/mysql_testing$ python3 retrieve_data.py

输出如下。

(1, 'Fantastic Beasts')(2, 'Lord of the rings')(3, 'Murder on the Orient Express')(4, 'The adventures of Sherlock Holmes')

我们可以看到ID为5的记录已被删除。上面的示例程序使用​​delete​​语句删除特定记录,这里删除了ID为5的记录。我们还可以使用其他任何字段名称删除对应记录。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:jetbrain fleet对标vscode实际操作
下一篇:Python之父吉多·范罗苏姆为什么要将这种编程语言取名“Python”
相关文章

 发表评论

暂时没有评论,来抢沙发吧~