Files
pgcat/tests/python/tests.py

11 lines
184 B
Python
Raw Permalink Normal View History

2022-02-03 18:02:50 -08:00
import psycopg2
2022-02-06 11:22:09 -08:00
conn = psycopg2.connect("postgres://random:password@127.0.0.1:6432/db")
2022-02-03 18:02:50 -08:00
cur = conn.cursor()
2022-02-06 11:22:09 -08:00
cur.execute("SELECT 1");
2022-02-03 18:02:50 -08:00
res = cur.fetchall()
2022-02-03 18:13:36 -08:00
print(res)
2022-02-06 11:22:09 -08:00
# conn.commit()