云服务器商的数据库是指由云服务提供商托管和管理的数据库服务。这种数据库服务允许用户在云端存储、管理和访问数据,而无需自行搭建和维护物理数据库基础设施。云数据库通常提供高可用性、弹性扩展、自动化运维等特性。
云数据库的类型主要包括关系型数据库(如MySQL、PostgreSQL等)和非关系型数据库(如MongoDB、Redis等)。关系型数据库适用于结构化数据存储和查询,而非关系型数据库则更适用于非结构化数据存储和快速读写场景。
import mysql.connector
# 连接数据库
config = {
'user': 'your_username',
'password': 'your_password',
'host': 'your_instance_endpoint',
'database': 'your_database_name',
'raise_on_warnings': True
}
try:
cnx = mysql.connector.connect(**config)
cursor = cnx.cursor()
# 执行查询
query = "SELECT * FROM your_table_name"
cursor.execute(query)
# 处理结果
for row in cursor:
print(row)
except mysql.connector.Error as err:
print(f"Error: {err}")
finally:
cursor.close()
cnx.close()
领取专属 10元无门槛券
手把手带您无忧上云