5. What properties we used to call stored procedure in C#?
Answers were Sorted based on User's Feedback
Answer / sudip pachal
CommandObject.CommandType=CommandType.StoreProcedure;
CommandObject.CommandText="Sp";
CommandObject.Executenonquery();
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / 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 |
Is it possible to nest cfml conditional tags?
What is the output of TextWriterTraceListener redirected?
Can we write one page in c# and other in vb in one application ?
Why linq is having select clause at the end?
How is the syntax written to inherit from a class in C#?Give an example ?
What is an extension method in c#?
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
What is object type in c#?
What does ienumerable mean?
Is there any way to access private memebers of an object from another object?
What is readline c#?
What do you mean by directing?