T
Tony Johansson
Hello!
Is it possible to use a StoredProcedure when you have SqlDataAdapter or is
it
only possible when you have SqlCommand like
SqlCommand thisCommand = myConnection.CreateCommand;
thisCommand.CommandType = CommandType.StoredProcedure;
thisCommand.CommandText = "MyStoredprocedure";
As far as I can see how would you tell SqlDataAdaper that you will use a
StoredProcedure ?
//Tony
Is it possible to use a StoredProcedure when you have SqlDataAdapter or is
it
only possible when you have SqlCommand like
SqlCommand thisCommand = myConnection.CreateCommand;
thisCommand.CommandType = CommandType.StoredProcedure;
thisCommand.CommandText = "MyStoredprocedure";
As far as I can see how would you tell SqlDataAdaper that you will use a
StoredProcedure ?
//Tony