4个回答
展开全部
.....
SqlCommand comm=new SqlCommand ();
comm.CommandType=CommandType.StoredProcedure;
comm.CommandText=pro_name;
comm.Connection=Conn;
SqlParameter para1=new SqlParameter ("@bianhao",SqlDbType.NVarChar,20);
para1.Direction=ParameterDirection.Output;
comm.ExecuteNonQuery();
conn.Close();
label1.Text=comm.Parameters["@bianhao"].Value.ToString();///此处将存储过程的返回参数取出
SqlCommand comm=new SqlCommand ();
comm.CommandType=CommandType.StoredProcedure;
comm.CommandText=pro_name;
comm.Connection=Conn;
SqlParameter para1=new SqlParameter ("@bianhao",SqlDbType.NVarChar,20);
para1.Direction=ParameterDirection.Output;
comm.ExecuteNonQuery();
conn.Close();
label1.Text=comm.Parameters["@bianhao"].Value.ToString();///此处将存储过程的返回参数取出
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//连接SQL SERVER
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connstr"].ToString());
//实例化SqlCommand
SqlCommand cmd = new SqlCommand("CheckManager", conn);
cmd.CommandType = CommandType.StoredProcedure;
//增加sql语句需要的参数
SqlParameter pUserID = new SqlParameter("@ManagerName", SqlDbType.NVarChar);
pUserID.Value = TxtUserID.Text.Trim();
Session["Name"] = TxtUserID.Text.Trim();
cmd.Parameters.Add(pUserID);
SqlParameter pUserPSW = new SqlParameter("@ManagerPSW", SqlDbType.NVarChar);
pUserPSW.Value = TxtUserPSW.Text.Trim();
//Session["UserPSW"] = TxtUserPSW.Text.Trim();
cmd.Parameters.Add(pUserPSW);
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connstr"].ToString());
//实例化SqlCommand
SqlCommand cmd = new SqlCommand("CheckManager", conn);
cmd.CommandType = CommandType.StoredProcedure;
//增加sql语句需要的参数
SqlParameter pUserID = new SqlParameter("@ManagerName", SqlDbType.NVarChar);
pUserID.Value = TxtUserID.Text.Trim();
Session["Name"] = TxtUserID.Text.Trim();
cmd.Parameters.Add(pUserID);
SqlParameter pUserPSW = new SqlParameter("@ManagerPSW", SqlDbType.NVarChar);
pUserPSW.Value = TxtUserPSW.Text.Trim();
//Session["UserPSW"] = TxtUserPSW.Text.Trim();
cmd.Parameters.Add(pUserPSW);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create proc getPP
@cout int output,
@name varchar(50)
as
select @cout = count(id) from tab_name where p_name = @name
@cout int output,
@name varchar(50)
as
select @cout = count(id) from tab_name where p_name = @name
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
print 出来的不行
可以见个临时表记录数据
在返回就行了
可以见个临时表记录数据
在返回就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询