On Jul 3, 8:18 pm, skunkwerk <[email protected]> wrote: > Hi, > I'm having issues making multiple ajax POST calls to functions > that access a database in my web app using sqlite and mod-wsgi. I > have no issues making requests to one function, but as soon as I call > a different function, I started getting "database is locked" errors.
See http://www.sqlite.org/faq.html#q5 about issues when trying to access Sqlite from multiple processes. And I guess your mod_wsgi IS running in multiprocess mode. -- damjan -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
