如何在Python中连接MySQL数据库?

  • Post category:Python

以下是如何在Python中连接MySQL数据库的完整使用攻略,包括导入模块、连接数据库、执行查询操作等步骤。提供了两个示例以便更好地理解如何连接MySQL。

步骤1:导入模块

在Python中,我们需要导入相应的模块连接数据库。以下是导入mysql-connector-python模块的基本语法:

import mysql.connector

步骤2:连接数据库

在Python中,我们需要连接到相应的数据库才能执行查询操作。以下是连接MySQL数据库的基本语法:

mydb = mysql.connector.connect(
  host="localhost",
  user="yourusername",
  password="yourpassword",
  database="mydatabase"
)

在上面的语法中,localhost是数据库服务器的主机名,yourusernameyourpassword是的用户名和密码,mydatabase是要使用的数据库的名称。

示例1

在这个示例中,我们使用Python连接到MySQL数据库,并查询customers表中的所有数据。

import mysql.connector

mydb = mysql.connector.connect(
  host="localhost",
  user="yourusername",
  password="yourpassword",
  database="mydatabase"
)

mycursor = mydb.cursor()

mycursor.execute("SELECT * FROM customers")

myresult = mycursor.fetchall()

for x in myresult:
  print(x)

在上面的代码中,我们首先使用mysql-connector-python模块连接到MySQL数据库。然后,使用SELECT语句从customers表中查询所有数据,并将结果存储在myresult变量中。最后,我们使用for循环遍历myresult变量中的所有数据,并使用print函数打印出每一行数据。

示例2

在这个示例中,我们使用Python连接到MySQL数据库,并向customers表中插入一条新数据。

import mysql.connector

mydb = mysql.connector.connect(
  host="localhost",
  user="yourusername",
  password="yourpassword",
  database="mydatabase"
)

mycursor = mydb.cursor()

sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
val = ("John", "Highway 21")

mycursor.execute(sql, val)

mydb.commit()

print(mycursor.rowcount, "record inserted.")

在上面的代码中,我们首先使用mysql-connector-python模块连接到MySQL数据库。然后,使用INSERT INTO语句customers表中插入一条新数据,并将结果存储在myresult变量中。最后,我们使用print函数打印出插入的记录数。

以上是如何在Python中连接MySQL数据库的完整使用攻略包括导入模块、连接数据库、执行查询操作等步骤。提供了两个示例以便更好地理解如何连接MySQL数据库。