Results 1 to 4 of 4
- 02-28-2009, 05:25 AM #1
Member
- Join Date
- Feb 2009
- Posts
- 96
- Rep Power
- 0
How to insert large data into database using one insert query
hi,iam working with JDBC . I face a sitution like this,
Statement stmt=con.createStatement();
-------
for(int i=0;i<1000;i++)
{
stmt.executeUpdate("insert into Sample.sampletable(col1,col2,col3) values(value1i,value2i,value3i)";
);
-----
}
-----
'con' is Connection object,I am not inserting same values each time for three columns that means value1,value2,value3 changes with each iteration.
This code takes numerous amount of time ,because 1000 times
"stmt.executeUpdate(query)" should communicate with database.
Now I want a alternative for above code in such a way that all values should be inserted with a insertion query that executes only once.
please help me.
- 02-28-2009, 05:30 AM #2
Senior Member
- Join Date
- Sep 2008
- Posts
- 564
- Rep Power
- 5
if you're using mysql as your database, i recommend using a load data file. i don't know if other databases have an equivalent.
MySQL :: MySQL 5.1 Reference Manual :: 12.2.6 LOAD DATA INFILE Syntax
- 02-28-2009, 06:47 AM #3
Member
- Join Date
- Feb 2009
- Posts
- 96
- Rep Power
- 0
thank u,but iam iam not inserting data from my any external file.
For example i am inserting data from a jtabel of 1000 rows.I am getting the values from jtable and then i am inserting into database
- 02-28-2009, 09:17 AM #4
Senior Member
- Join Date
- Sep 2008
- Posts
- 564
- Rep Power
- 5
Similar Threads
-
Problem when insert Date to database(SQL)
By hungleon88 in forum JDBCReplies: 6Last Post: 04-29-2009, 03:53 PM -
how to insert date field read from Excel using JExcel to database
By saran123 in forum JDBCReplies: 1Last Post: 10-10-2008, 08:47 AM -
How to insert java Object in oracle database
By Thilkumar82 in forum Advanced JavaReplies: 9Last Post: 08-13-2008, 11:33 AM -
Probeleme with insert into database oracle
By bachtoutou in forum New To JavaReplies: 0Last Post: 05-24-2008, 11:56 AM -
Using PreparedStatement to insert image into database
By Java Tip in forum Java TipReplies: 0Last Post: 02-10-2008, 11:25 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks