My question: is there any way to run multiple stored procedures with one SqlDataAdapter like this

adapter = new SqlDataAdapter("ProcforselectUserTableWhere ; ProcforselectuserTypeAuthorizationWhere", con);
adapter.SelectCommand.CommandType = CommandType.StoredProcedure;
adapter.SelectCommand.Parameters.AddWithValue("@Userid", Request.QueryString[0]);  
adapter.Fill(dataset);

I tried this but I am getting the error:

Could not find stored procedure 'ProcforselectUserTableWhere ; ProcforselectuserTypeAuthorizationWhere'.

Please help

有帮助吗?

解决方案

No, this is not possible because stored procedures are executed differently than raw SQL statements. See, the parameters are implied with stored procedures, not defined in the query. Therefore the Fill method is looking for a stored procedure that is literally named in the CommandText.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top