我是cloud9 IDE的新手,我按照this教程设置了postgres。我使用python pandas将@EnableCircuitBreaker
@EnableDiscoveryClient
@Import(ZuulLegacyProxyConfiguration.class)
@SpringBootApplication
public class Application {....}
文件加载到postgres中。
csv
当我尝试访问import pandas as pd
from sqlalchemy import create_engine
df = pd.read_csv('../few.csv')
engine = create_engine('postgresql://username:passoword@localhost:5432/db')
df.to_sql("few", engine)
时,这就是我所获得的:
db
但是,username=# select * from few;
ERROR: relation "few" does not exist
LINE 1: select * from few;
中存在表few
,因为当我再次尝试运行该python脚本时,它会显示db
我不知道那里有什么东西。
偶数列表命令不返回表。
ValueError: Table 'few' already exists.
答案 0 :(得分:1)
您收到该错误是因为当您尚未连接到数据库时,您正尝试从表格中进行选择
首先使用
连接到您的数据库 curl
或\connect db
运行查询现在应该可以正常工作