How to insert morethan 1 lakh records
Hi All,Can any one tell me how to insert more than 1 lakh records in jdbc program at a time.Tks in advance,Tks & RgdsGnana
[161 byte] By [
sgnana81a] at [2007-11-27 5:41:33]

# 1
You havent provided enough information on your problem.
If you have a .sql file with the entries, try to import it into your database directly without using java.
If you have it some other format, then write a java program that reads the contents of the file and insert it one row at a time.
# 2
> Hi All,> Can any one tell me how to insert more than 1> lakh records in jdbc program at a time.What is the problem, there is really no difference in inserting 10 or 1 lakh records (provided you are using a loop to do so ;) ) ?