5. What properties we used to call stored procedure in C#?
Answer Posted / anil singh
Sqlcommand cmd=new Sqlcommand ();
cmd.CommandType=CommandType.StoreProcedure;
cmd.CommandText="Name-of-StoreProcedure";
cmd.ExecuteNonQuery();
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Does c# support try-catch-finally blocks?
What is object array in c#?
Is c# good for web development?
Is is possible to force garbage collector to run?
How to open a new form on button click in Windows forms?
What is unmannaged code and will CLR handle this kind of code or not .
What are Indexers in C#?
Explain About Virtual functions and their use.
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
What are the boolean data types in c#?
Describe how a .net application is compiled and executed
Is c# different than c++?
What are functions in c#?
Explain the serialization in .net
What is single dimensional array in c#?