On 10/28/05, Dave Dyer <[EMAIL PROTECTED]> wrote: > > If I designed a sqlite database to be used by a bunch of independent > applications, for example a bunch of CGI scripts each of which > opened the database, did some processing, and exited, would > that be (a) safe (b) effecient ?
As long as you check the return codes, which might indicate if you have conflicts, it should work just fine. That's exactly what I did with it. It works fine and is quite speedy. You might consider fast cgi if your web server supports it.