Re: CherryPy + Database questions

2007-03-06 Thread Diez B. Roggisch
> SQLite isn't really a DBMS at all, it's just a library. Where is the difference? From the DB-API-side none. And there are plenty of DBs out there that work similar, like MS Access. Show me where it is written that a DBMS has to run as separate server process. > According to > their FAQ (http:

Re: CherryPy + Database questions

2007-03-05 Thread [EMAIL PROTECTED]
On Mar 5, 8:44 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Brian Blais wrote: > > Hello, > > > I have more of a conceptual question about the way databases work, in a > > web > > framework, but I will be implementing things with CherryPy and SQLAlchemy. > > If you make a web form that adds

Re: CherryPy + Database questions

2007-03-05 Thread Diez B. Roggisch
Brian Blais wrote: > Hello, > > I have more of a conceptual question about the way databases work, in a > web > framework, but I will be implementing things with CherryPy and SQLAlchemy. > If you make a web form that adds rows to a database, and use sqlite as > the engine, is there a danger of a

CherryPy + Database questions

2007-03-05 Thread Brian Blais
Hello, I have more of a conceptual question about the way databases work, in a web framework, but I will be implementing things with CherryPy and SQLAlchemy. If you make a web form that adds rows to a database, and use sqlite as the engine, is there a danger of a race condition if several us