以下是如何在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
是数据库服务器的主机名,yourusername
和yourpassword
是用户名和密码,mydatabase
是要使用的数据库的名称。
步骤3:执行查询操作
在Python中,我们可以使用SELECT
语句从数据库获取数据。以下是查询所有列的基本语法:
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM table_name")
myresult = mycursor.fetchall()
for x in myresult:
print(x)
在上面的语法中,table_name
是要查询的表的名称。SELECT *
语句用于获取表中的所有列。
示例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数据库。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:如何在Python中连接MySQL数据库? - Python技术站