Posted by Jerry Stuckle on 07/04/07 20:52
Mariano Montone wrote:
> Hi,
> I'd like to know how I can achieve keeping a transaction live
> across multiple http requests. This is not for production work so any
> ugly hacks are welcomed. My idea is using solidDB engine optimistic
> concurrency control for transactions in order to avoid locking. Isn't
> there any way I can keep the transaction id or something in order to
> have access to the same transaction later on?
>
> Thanks, Mariano
>
You can't. Connections are closed at the end of each page.
You wouldn't want to, anyway. It's NEVER a good idea to hold any kind
of lock (even ones implicitly held in transactions) across user input.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|