How can we insert 100 records @ a time without using for loop into the databse
Answer Posted / vinodh kumar
if you are inserting values from another table. then you can use this.
insert into table name
select <columns> from <table1>
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the value types in c#?
What is stringreader in c#?
Name any three ways to pass parameters to a method in c#?
What is executenonquery c#?
What is the signature of a method?
What is public, private, protected, internal and internal protected?
What is literal in c#?
What are methods c#?
Can we call server-side code (c# or vb.net code) from javascript?
What is array and arraylist?
Can you inherit from a sealed class?
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards
What is thread.sleep()?
What is unmannaged code and will CLR handle this kind of code or not .
Explain the difference between a sub and a function in c#.