要新建连接MySQL数据库,可以通过以下步骤进行:
以下是一个使用Python的示例代码,演示如何连接MySQL数据库:
import mysql.connector
# 创建数据库连接
cnx = mysql.connector.connect(
host='localhost',
user='username',
password='password',
database='database_name'
)
# 创建游标对象
cursor = cnx.cursor()
# 执行SQL查询
query = "SELECT * FROM table_name"
cursor.execute(query)
# 获取查询结果
result = cursor.fetchall()
# 打印查询结果
for row in result:
print(row)
# 关闭游标和数据库连接
cursor.close()
cnx.close()
在上面的代码中,你需要将localhost
替换为你的MySQL服务器的主机名,username
和password
替换为你的数据库的用户名和密码,database_name
替换为你要连接的数据库名称,table_name
替换为你要查询的表名。
总结:
领取专属 10元无门槛券
手把手带您无忧上云