Re: [Tutor] Multi-User file system

2008-11-02 Thread Kent Johnson
On Sun, Nov 2, 2008 at 2:32 AM, Jim Morcombe <[EMAIL PROTECTED]> wrote: > Would pySQLite be a reasonable choice for this? >From the SQLite docs at http://sqlite.org/whentouse.html: - A good rule of thumb is that you should avoid using SQLite in situations where the same database will be accessed s

Re: [Tutor] Multi-User file system

2008-11-01 Thread Jim Morcombe
Would pySQLite be a reasonable choice for this? Jim Morcombe Jim Morcombe wrote: I want to have a couple of files that can be updated simultaneously be several users. I don't want to go to the effort of having the users set up a RDMS and would like to control everything from Python. I am

[Tutor] Multi-User file system

2008-11-01 Thread Jim Morcombe
I want to have a couple of files that can be updated simultaneously be several users. I don't want to go to the effort of having the users set up a RDMS and would like to control everything from Python. I am after something like shelve, but with record locking. Is there such a thing? Jim Mo