Re: [sqlite] Separated transactions - stable consistency

2006-04-19 Thread DurumDara
[EMAIL PROTECTED] írta: DurumDara <[EMAIL PROTECTED]> wrote: I want to use SQLite database like the FireBird database: with big isolation level. SQLite transactions are SERIALIZABLE. It is possible to force SQLite transactions to be READ UNCOMMITTED under some special circumstances, b

Re: [sqlite] Separated transactions - stable consistency

2006-04-19 Thread drh
DurumDara <[EMAIL PROTECTED]> wrote: > > I want to use SQLite database like the FireBird database: with big > isolation level. SQLite transactions are SERIALIZABLE. It is possible to force SQLite transactions to be READ UNCOMMITTED under some special circumstances, but you have to work very hard

[sqlite] Separated transactions - stable consistency

2006-04-19 Thread DurumDara
Hi ! I want to use SQLite database like the FireBird database: with big isolation level. What's that meaning ? I have an application that periodically check some input directory, process the elements in it, and copy them into a global database. It is like a daemon, working in the background. Th