python读取和写入PostgreSQL问题总结
Python读取PostgreSQL数据流程如下:import psycopg2#连接数据库conn = psycopg2.connect(database = 'name', user = 'admin', password = '123456', host = '10.10.10.10', port = '5432')curs=conn.cursor()#编写Sql,只...