mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 03:26:37 +03:00
20 lines
518 B
Python
20 lines
518 B
Python
import psycopg
|
|
import psycopg.extras
|
|
|
|
conn = psycopg.connect('dbname=test')
|
|
#curs = conn.cursor()
|
|
#curs.execute("CREATE TABLE itest (n int4)")
|
|
|
|
#for i in xrange(10000000):
|
|
# curs = conn.cursor()
|
|
# curs.execute("INSERT INTO itest VALUES (1)")
|
|
# curs.execute("SELECT '2003-12-12 10:00:00'::timestamp AS foo")
|
|
# curs.execute("SELECT 'xxx' AS foo")
|
|
# curs.fetchall()
|
|
# curs.close()
|
|
|
|
curs = conn.cursor(factory=psycopg.extras.DictCursor)
|
|
curs.execute("select 1 as foo")
|
|
x = curs.fetchone()
|
|
print x['foo']
|