连接到远程数据库通常涉及以下几个基础概念:
import mysql.connector
# 数据库连接配置
config = {
'user': 'your_username',
'password': 'your_password',
'host': 'your_database_host',
'database': 'your_database_name',
'raise_on_warnings': True
}
try:
# 连接到数据库
cnx = mysql.connector.connect(**config)
print("成功连接到数据库")
# 执行查询
cursor = cnx.cursor()
query = ("SELECT * FROM your_table")
cursor.execute(query)
# 获取结果
for row in cursor:
print(row)
# 关闭连接
cursor.close()
cnx.close()
except mysql.connector.Error as err:
print(f"连接数据库时出错: {err}")
通过以上步骤和示例代码,你应该能够成功连接到远程数据库。如果遇到具体问题,请根据错误信息进行排查。
领取专属 10元无门槛券
手把手带您无忧上云