我正在尝试通过 Python 查询 RDS(Postgres)数据库,更具体地说是 Jupyter Notebook。总的来说,我现在一直在尝试的是:import boto3client = boto3.client('rds-data')response = client.execute_sql( awsSecretStoreArn='string', database='string', dbClusterOrInstanceArn='string', schema='string', sqlStatements='string')我一直收到的错误是:BadRequestException: An error occurred (BadRequestException) when calling the ExecuteSql operation: ERROR: invalid cluster id: arn:aws:rds:us-east-1:839600708595:db:zprime
1 回答
精慕HU
TA贡献1845条经验 获得超8个赞
最后,它比我想象的要简单得多,没有什么特别的或具体的。它基本上是我之前在访问我的本地数据库时使用过的一种解决方案。只需import为您的数据库类型(Postgres、MySQL 等)创建一个特定的库,然后连接到它以通过 python 执行查询。
我不知道这是否是最好的解决方案,因为通过 python 进行查询可能比直接进行查询要慢得多,但它现在是有效的。
import psycopg2
conn = psycopg2.connect(database = 'database_name',
user = 'user',
password = 'password',
host = 'host',
port = 'port')
cur = conn.cursor()
cur.execute('''
SELECT *
FROM table;
''')
cur.fetchall()
添加回答
举报
0/150
提交
取消