How to insert into data base using multi threading programming [closed]
- by user1196650
I am having a method and that method needs to do the following thing:
It has to insert records into a database.
No insert is done for the same table again.
All inserts are into different tables.
I need a multi threading logic which inserts the details into db using different threads.
I am using oracle db and driver configuration and remaining stuff are perfect.
Please help me with an efficient answer.
Can anyone could provide me with a skeleton logic of the program.