I need to insert multiple row's into sql server database (100 at a time) from my java code. How can i do this..? Currently i am inserting one by one and this does not look efficient...
Kaddy
|
I need to insert multiple row's into sql server database (100 at a time) from my java code. How can i do this..? Currently i am inserting one by one and this does not look efficient... Kaddy |
||||
|
|
|
You can use
See also: |
|||||||
|
|
Use a batch. Check out the addBatch(), executeBatch(), etc. methods of Java's Statement For a simple example, check here (but I would suggest using a PreparedStatement) |
||||
|
You can pass one very long string to SQL with multiple inserts as one statement to SQL Server. This won't work if you're doing parameterized queries, though. And concatenated SQL strings are "Generally a Bad Idea." You might be better off looking at the BULK INSERT command. It has the problem of being rigid about column orders and such. But its WAY FAST!! |
|||
|
found an example of batching using jdbc. check this out: http://www.exampledepot.com/egs/java.sql/BatchUpdate.html |
|||
|
|