1
0
forked from VimPlug/jedi
Files

12 lines
134 B
Python

import psycopg2
conn = psycopg2.connect('dbname=test')
#? ['cursor']
conn.cursor
cur = conn.cursor()
#? ['fetchall']
cur.fetchall