要连接MySQL数据库,通常需要以下几个基础概念和步骤:
mysql-connector-python
。以下是一个使用Python连接MySQL数据库的示例代码:
import mysql.connector
# 配置数据库连接参数
config = {
'host': 'localhost',
'port': 3306,
'database': 'your_database',
'user': 'your_username',
'password': 'your_password'
}
try:
# 建立连接
connection = mysql.connector.connect(**config)
if connection.is_connected():
print("Connected to MySQL database")
# 创建游标对象
cursor = connection.cursor()
# 执行SQL查询
cursor.execute("SELECT DATABASE();")
record = cursor.fetchone()
print("You're connected to database: ", record)
except mysql.connector.Error as err:
print(f"Error: '{err}'")
finally:
# 关闭连接
if connection.is_connected():
cursor.close()
connection.close()
print("MySQL connection is closed")
如果你使用的是腾讯云数据库服务,可以参考腾讯云提供的MySQL数据库服务文档和示例代码:
希望这些信息对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云