动态连接mysql的床架
时间: 2023-07-11 21:08:29 浏览: 76
连接MySQL需要使用数据库驱动程序,例如Python中的`mysql-connector-python`。以下是使用该驱动程序连接MySQL数据库的示例代码:
```python
import mysql.connector
# 创建连接
mydb = mysql.connector.connect(
host="localhost",
user="root",
password="password",
database="mydatabase"
)
# 执行查询
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM customers")
# 获取结果
myresult = mycursor.fetchall()
# 输出结果
for x in myresult:
print(x)
```
在上面的代码中,需要将`host`、`user`、`password`和`database`替换为正确的值,以连接到相应的MySQL数据库。然后使用`cursor()`方法执行查询,并使用`fetchall()`方法获取查询结果。最后,可以通过遍历结果集并输出每行数据来查看结果。
阅读全文