-1

I came across this scenario where I have to insert some 100 rows into my table using the Java application that I support.

I do not want my application to hit the DB every time with the insert query to do this.

Can you suggest some idea for me to insert all those 100 rows in to that table with a single DB hit.

LGAP
  • 2,365
  • 17
  • 50
  • 71

1 Answers1

2

You can do batch query processing for this purpose.

kosa
  • 65,990
  • 13
  • 130
  • 167