...
> But I need to do these tasks with a locked table or series of records, to
> ensure no concurrent writes incur conflict.
[quoted text clipped - 5 lines]
>
> Or any other suggestions to achieve this goal?
Actually I see now that I *can* use transactions to accomplish this.
Thanks marvinbbb@yahoo.de for your reply to an earlier thread

Signature
Mike W
Silvio Bierman - 04 Jan 2004 09:07 GMT
> ...
> > But I need to do these tasks with a locked table or series of records, to
[quoted text clipped - 10 lines]
> Actually I see now that I *can* use transactions to accomplish this.
> Thanks marvinbbb@yahoo.de for your reply to an earlier thread
No you cant. Access has terrible multi-user behaviour with a broken locking
scheme. It has no real transactional behaviour so the transaction APIs in
JDBC will not do anything usefull for you.
If you are doing more than single user data storage drop Access and look at
something different (SQLServer, MySQL, ...)
Silvio Bierman