diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-10-15 00:58:32 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-10-15 00:58:32 +0100 |
commit | b205764fdde4549c48c27841aa17e6c7f499e808 (patch) | |
tree | 1475eb57dc854ea4a1dc93c1c6a567e6fc584e5c /sandbox/array.py | |
parent | e7227ce87b8da75fef1a3376ebb47e2bf20f6063 (diff) | |
parent | 7a5edff6c66a0410d6fecd4445980aabafc3ab4a (diff) | |
download | psycopg2-errors-module.tar.gz |
Merge branch 'master' into errors-moduleerrors-module
Diffstat (limited to 'sandbox/array.py')
-rw-r--r-- | sandbox/array.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sandbox/array.py b/sandbox/array.py deleted file mode 100644 index 9790d34..0000000 --- a/sandbox/array.py +++ /dev/null @@ -1,30 +0,0 @@ -import psycopg2 - -conn = psycopg2.connect("port=5433 dbname=test") -curs = conn.cursor() - -#curs.execute("SELECT ARRAY[1,2,3] AS foo") -#print curs.fetchone()[0] - -#curs.execute("SELECT ARRAY['1','2','3'] AS foo") -#print curs.fetchone()[0] - -#curs.execute("""SELECT ARRAY[',','"','\\\\'] AS foo""") -#d = curs.fetchone()[0] -#print d, '->', d[0], d[1], d[2] - -#curs.execute("SELECT ARRAY[ARRAY[1,2],ARRAY[3,4]] AS foo") -#print curs.fetchone()[0] - -#curs.execute("SELECT ARRAY[ARRAY[now(), now()], ARRAY[now(), now()]] AS foo") -#print curs.description -#print curs.fetchone()[0] - -#curs.execute("SELECT 1 AS foo, ARRAY[1,2] AS bar") -#print curs.fetchone() - -#curs.execute("SELECT * FROM test()") -#print curs.fetchone() - -curs.execute("SELECT %s", ([1,2,None],)) -print(curs.fetchone()) |