Re: How can i delete records of Oracle table!_NEWLINE_!with help jdbc
Posted By:
Lakshmanan_Sakthivel
Posted On:
Thursday, February 28, 2002 01:57 PM
May be it is due to Database LOCK. Normally oracle LOCKS the table when you do update or delete. The LOCK will be released only after the commit. So don't forget to use commit after updating the table, otherwise you can set the autocommit property to true before you do any update on the table.