Files
pgcat/tests/python/tests.py
Lev Kokotov f8d6bd8d89 rename
2022-02-06 11:22:09 -08:00

11 lines
184 B
Python

import psycopg2
conn = psycopg2.connect("postgres://random:password@127.0.0.1:6432/db")
cur = conn.cursor()
cur.execute("SELECT 1");
res = cur.fetchall()
print(res)
# conn.commit()