Multi-threading issues while handling JDBC transactions
Elamurugu Lakuvan
Greenhorn
Joined: May 02, 2003
Posts: 1
posted
0
I have 5 threads running, each thread tries to insert some records into the database. Each thread is unaware of what the other thread is processing. In this scenario when one of the thread out of 5 is facing some problem while inserting into database, it tries to rollback its own transaction. Is it possible to rollback the transactions of the other threads and also can we stop the execution of other threads?? Code snippets: public class ThreadSample { //Our own implementation private TransactionContext getTransactionContext(Context context) { return TransactionContext(context.getTransactionContextId()); } class MyThread extends Thread { public void run() { try { TransactionContext txt = getTransactionContext(context) txt.begin(); Connection con = txt.getConnection(); <<insert records into table>> txt.commit(); txt = null; } catch (Exception ex) { } finally { if (txt != null) { txt.rollback(); } } } } public static void main(String[] args) { MyThread t1 = new MyThread(); . . MyThread t5 = new MyThread(); t1.start(); . . t5.start(); } }
Jane Somerfield
Ranch Hand
Joined: Jul 20, 2002
Posts: 192
posted
0
The five transactions are independent from each other. Rollback on one does not affect others.If DB implements SERIALIZABLE, there should be not a problem in your case.