mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 19:46:36 +03:00
19 lines
448 B
Python
19 lines
448 B
Python
|
import psycopg2
|
||
|
|
||
|
con = psycopg2.connect("dbname=test")
|
||
|
|
||
|
cur = con.cursor()
|
||
|
cur.execute("SELECT %s::regtype::oid", ('bytea', ))
|
||
|
print cur.fetchone()[0]
|
||
|
# 17
|
||
|
|
||
|
cur.execute("CREATE DOMAIN thing AS bytea")
|
||
|
cur.execute("SELECT %s::regtype::oid", ('thing', ))
|
||
|
print cur.fetchone()[0]
|
||
|
#62148
|
||
|
|
||
|
cur.execute("CREATE TABLE thingrel (thingcol thing)")
|
||
|
cur.execute("SELECT * FROM thingrel")
|
||
|
print cur.description
|
||
|
#(('thingcol', 17, None, -1, None, None, None),)
|