psycopg2 open file for reading - Mailing list psycopg

From Dan Sawyer
Subject psycopg2 open file for reading
Date
Msg-id 5630DA60.5060004@earthlink.net
Whole thread Raw
Responses Re: psycopg2 open file for reading
List psycopg
The question relates to copy file commands within a python script. The
database open and file operations are working correctly.

The string passed to psycopg2 is:    copy_string = 'copy temp_tbl from
'/tmp/test.txt' csv delimiter '|';'

The psycopg2 commands executed tried are:

cursoro.copy_expert(copy_string,f)
and
cursoro.execute(copy_string)

Both produce the follow errors:

Traceback (most recent call last):
   File "./norm_name_py_01.py", line 162, in <module>
     main()
   File "./norm_name_py_01.py", line 157, in main
     cursoro.copy_expert(copy_string,f)
psycopg2.ProgrammingError: could not open file "/tmp/test.txt" for
reading: Permission denied

ls -altr /tmp/test.txt
-rw-rw-r--. 1 dan dan 52833 Oct 28 06:07 /tmp/test.txt

Dan


psycopg by date:

Previous
From: Daniel Son
Date:
Subject: Getting the query id
Next
From: Adrian Klaver
Date:
Subject: Re: psycopg2 open file for reading