Re: [sqlite] 2PC / two-phase commit?

2006-12-03 Thread Florian Weimer
> SQLite uses a 2-phase commit internally when it is > making changes to two or more ATTACHed database files. Are there any plans to expose this at the API level? This could be useful for implementing reliable data exchange with other database systems. ---

Re: [sqlite] 2PC / two-phase commit?

2006-06-27 Thread Gerhard Häring
Eino Mäkitalo wrote: I am playing with zodb storages and there is some kind of 2pc support. I dont know if I really need it to implement my storage (for fun) zodb over sqlite but at least I was thinking possibility to not make those temporary changes programmatic way but to use sqlite transacti

Re: [sqlite] 2PC / two-phase commit?

2006-06-27 Thread Eino Mäkitalo
I am playing with zodb storages and there is some kind of 2pc support. I dont know if I really need it to implement my storage (for fun) zodb over sqlite but at least I was thinking possibility to not make those temporary changes programmatic way but to use sqlite transactions as they are. Acc

Re: [sqlite] 2PC / two-phase commit?

2006-06-27 Thread drh
=?ISO-8859-1?Q?Eino_M=E4kitalo?= <[EMAIL PROTECTED]> wrote: > Does sqlite support two-phase commit (2PC)? > Found some hints about it only with virtual tables. > SQLite uses a 2-phase commit internally when it is making changes to two or more ATTACHed database files. But that is probably not what

[sqlite] 2PC / two-phase commit?

2006-06-27 Thread Eino Mäkitalo
Does sqlite support two-phase commit (2PC)? Found some hints about it only with virtual tables. Eino