我成功地从熊猫数据框中将记录插入到PostGREs表中。 下面提供了代码。
try:
engine = create_engine('postgresql://***CONNECTION***')
connection = engine.raw_connection()
dataframe1.to_sql('table1', con=engine, schema='public', index=False, if_exists='append')
except (Exception) as error :
print ("Error while connecting to PostgreSQL", error)
finally:
#closing database connection.
if(connection):
connection.close()
print("PostgreSQL connection is closed")
我希望将执行统计信息写入日志文件。我正在寻找插入,拒绝,执行时间等记录的数量。
非常感谢您的帮助/建议。