好学IT学院:IT信息技术分享交流平台
来源:互联网  作者:cfan  发布时间:2007-02-06  ★★★加入收藏〗〖手机版
摘要:获得存储过程的返回值-System.Data.SqlClient.SqlConnection scon = new System.Data.SqlClient.SqlC……

获得存储过程的返回值

-------------------------------------

System.Data.SqlClient.SqlConnection scon = new System.Data.SqlClient.SqlConnection("server=Netangel;uid=etopsUS;pwd=etops;database=etops");
System.Data.SqlClient.SqlCommand scom = new System.Data.SqlClient.SqlCommand("",scon);
scon.Open();
scom.CommandText="p_CorpClassAdd";
scom.CommandType = System.Data.CommandType.StoredProcedure;
scom.Parameters.Add(

new SqlParameter("ReturnValue", SqlDbType.Int, 4,

ParameterDirection.ReturnValue, false, 0, 0,

string.Empty, DataRowVersion.Default, null)) //增加存储过程的返回值参数
scom.ExecuteNonQuery();
Response.Write(scom.Parameters["ReturnValue"].Value.ToString());  //输出存储过程