Re: Optimistic locking strategy with iBatis

2005-04-02 Thread NetSQL
Just keep a copy of the orginial List of results fileds. Then use them in you where clause. .V Wulf, Andrew wrote: Before I figure it out the hard way, anyone have some pointers on implementing an optimistic lock strategy with iBatis. The difficulty is that we have nothing in the database (or can

Re: Optimistic locking strategy with iBatis

2005-03-30 Thread Brandon Goodin
IBatis maintains no optimistic locking strategies. Normally we recommend that you put an update count into your database. But, being that you can't do that, you probably are working with the best solution possible. Brandon On Wed, 30 Mar 2005 13:29:01 -0600, Wulf, Andrew <[EMAIL PROTECTED]> wrot

Optimistic locking strategy with iBatis

2005-03-30 Thread Wulf, Andrew
Title: Optimistic locking strategy with iBatis Before I figure it out the hard way, anyone have some pointers on implementing an optimistic lock strategy with iBatis. The difficulty is that we have nothing in the database (or can add anything) like a version field or last update time. The