【MySQL系列】PolarDB入门使用
PolarDB是阿里云提供的一种类似于MySQL的关系型数据库服务。以下是一个简单的Python示例,展示如何使用pymysql库连接PolarDB数据库并执行一个简单的查询。
首先,确保你已经安装了pymysql
库。如果没有安装,可以使用以下命令安装:
pip install pymysql
然后,你可以使用以下Python代码来连接PolarDB并执行查询:
import pymysql
# 替换以下信息为你的PolarDB数据库连接信息
host = 'your_polardb_host'
user = 'your_username'
password = 'your_password'
db = 'your_database'
# 连接PolarDB
connection = pymysql.connect(host=host, user=user, password=password, db=db, charset='utf8mb4')
try:
# 创建cursor对象
with connection.cursor() as cursor:
# 编写SQL查询语句
sql = "SELECT * FROM your_table LIMIT 10;"
# 执行SQL语句
cursor.execute(sql)
# 获取查询结果
results = cursor.fetchall()
# 打印结果
for row in results:
print(row)
finally:
# 关闭数据库连接
connection.close()
请确保将上述代码中的your_polardb_host
、your_username
、your_password
、your_database
和your_table
替换为你的PolarDB实例的实际信息。
这个简单的脚本展示了如何使用Python连接PolarDB并执行一个查询。记得在实际使用时处理好异常和资源管理。
评论已关闭