1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 14:00:05 +08:00
SpaceVim/bundle/jedi-vim/pythonx/jedi/test/completion/thirdparty/psycopg2_.py

12 lines
134 B
Python
Raw Normal View History

2022-10-23 15:41:52 +08:00
import psycopg2
conn = psycopg2.connect('dbname=test')
#? ['cursor']
conn.cursor
cur = conn.cursor()
#? ['fetchall']
cur.fetchall