MySQL是一种关系型数据库管理系统(RDBMS),它使用结构化查询语言(SQL)进行数据管理。它被广泛应用于各种规模的应用程序中,用于存储、检索和管理数据。
MySQL数据库有多种类型,包括:
MySQL广泛应用于各种场景,包括:
连接MySQL数据库通常涉及以下几个步骤:
mysql-connector-python
库。以下是一个使用Python连接MySQL数据库并执行简单查询的示例代码:
import mysql.connector
# 配置数据库连接参数
config = {
'host': 'localhost',
'port': 3306,
'user': 'your_username',
'password': 'your_password',
'database': 'your_database'
}
try:
# 建立连接
connection = mysql.connector.connect(**config)
# 创建游标对象
cursor = connection.cursor()
# 执行SQL查询
query = "SELECT * FROM your_table"
cursor.execute(query)
# 获取查询结果
results = cursor.fetchall()
# 打印结果
for row in results:
print(row)
except mysql.connector.Error as err:
print(f"Error: {err}")
finally:
# 关闭连接
if connection.is_connected():
cursor.close()
connection.close()
领取专属 10元无门槛券
手把手带您无忧上云