by =?ISO-8859-1?Q?Arne_Vajh=F8j?= <arne@[EMAIL PROTECTED]
>
Mar 23, 2008 at 08:46 PM
Steve wrote:
> How to guarantee the JDBC code is thread safe? Should we put
> synchronize block in JDBC methods that performs update/delete
> operations?
The exact same thread safe rules applies to code using JDBC as
any other code.
If you are worried about the database, then don't think
synchronized - think transactions and transaction isolation
level.
Arne