Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have a code below:
C#
for (int i = 0; i < 100000; i++)
           {
sql += "Begin tran t1 insert into LUONGKHOAN(MaLuongKhoan) values("+i +") commit tran t1 ";
}

When I finished, all 45s.How to faster processing.Thanks for sharing community.
Posted

Your code is not complete , so I don't know this - however, I think you might be making a call to insert to the database one by one.
Try to send the request just once - this will save a lot of time going back and forth over the network to insert data/
 
Share this answer
 
No no. I just do it, not to add to the database.
 
Share this answer
 
v2
Comments
Matt T Heffron 22-Mar-13 17:07pm    
Don't use the "Add your solution here" when you are answering someone else's solution. Use the "Have a Question or Comment?" button. And ESPECIALLY don't mark it as the Accepted solution!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900