Re: sqlite3 permission issue

2008-03-04 Thread Tim Chase
> I am trying to execute an update to a sqlite3 db via a python cgi If you're running as a CGI, your script (as you guess below) will usually run with the effective permissions of the web-server. Frequently, this is some user such as "wwwdata" or "www". > conn = sqlite3.connect('db') Make sure

Re: sqlite3 permission issue

2008-03-04 Thread chris
On Mar 4, 3:10 pm, chris <[EMAIL PROTECTED]> wrote: > I am trying to execute an update to a sqlite3 db via a python cgi > script. I can execute a select via a cgi script, but when I attempt > an update, I get an "unable to open database file" error. But the > error comes on the update statement,