python链接数据库mysql代码
时间: 2024-06-19 15:03:52 浏览: 113
python数据库(mysql)连接代码
下面是Python连接MySQL数据库的示例代码:
```python
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`模块来连接MySQL数据库。我们首先需要使用`connect()`方法来连接到指定的MySQL服务器,然后我们创建一个游标对象,并使用`execute()`方法来执行SQL查询语句。最后,我们可以使用`fetchall()`方法获取查询结果,并对结果进行处理。
需要注意的是,你需要将代码中的`yourusername`和`yourpassword`替换为你的MySQL用户名和密码,`mydatabase`替换为你的数据库名称。
阅读全文