asp.net 存储过程求助

CREATEPROCEDUREP_Search@Idint=null,@Namevarchar(50)=nullasif@Id=0beginselect*fromServ... CREATE PROCEDURE P_Search
@Id int=null,
@Name varchar(50)=null
as
if @Id=0
begin
select * from Services where ServicesName LIKE'% @Name%'
end
else
begin
select * from SkillFiles where S_Title LIKE'% @Name%'
end

GO
这个存储过程怎样调用啊?谢谢大家了,是一个模糊查询的.
展开
 我来答
百度网友aee3796fd
2008-10-16 · TA获得超过128个赞
知道答主
回答量:73
采纳率:0%
帮助的人:80.5万
展开全部
public override List<poll> Search(int id,string name)
{
using (SqlConnection cn = new SqlConnection("连接字符串"))
{
SqlCommand cmd = new SqlCommand("存储过程的名字", cn);
//说明是个存储过程
cmd.CommandType = CommandType.StoredProcedure;
//添加参数
cmd.Parameters.Add("@Id", SqlDbType.Int).Value = id;
cmd.Parameters.Add("@Name", SqlDbType.VarChar, 50).Value = name;
//打开数据库
cn.Open();

//执行操作
SqlDataReader reader = cmd.ExecuteReader();

List<poll> polls = new List<poll>();

//获取返回的值,存入到集合中
while (reader.Read())
{
polls.Add(new poll((int)reader["列1"]),
(string)reader["列2"],(bool)reader["列3"]);//等等,存储过程里的select * 最好用select 列1,列2..替换
}

return polls;
}
}
///说明
///你的Search返回的结果集,我用List<poll>代替
/// new poll里保存存储过程的返回值 reader["返回结果"];
///
菊幽静涵
2008-10-16 · 超过17用户采纳过TA的回答
知道答主
回答量:102
采纳率:100%
帮助的人:0
展开全部
/// <summary>
/// 执行存储过程
/// </summary>
/// <param name="procName">存储过程的名称</param>
/// <returns>返回存储过程返回值</returns>
public int RunProc(string procName)
{
if (!this.Open())
return SQL_RET_ERROR;

SqlCommand cmd = this.CreateCommand(procName, null);
try
{
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
m_strErrorMessage = ex.Message.Replace("\"","").Replace("\r\n","").Replace("'","");
return SQL_RET_ERROR;
}
this.Close();
return (int)cmd.Parameters["ReturnValue"].Value;
}

调用就是RunProc(P_Search )
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
QB黑色的夜
2008-10-16 · 超过11用户采纳过TA的回答
知道答主
回答量:74
采纳率:0%
帮助的人:0
展开全部
比如
exec P_Search 5 'zhangsan'
exec P_Search
exec P_Search 'lisi'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
悄逝的天堂
2008-10-16 · 超过10用户采纳过TA的回答
知道答主
回答量:88
采纳率:0%
帮助的人:0
展开全部
人才啊,你都没有从程序中川过来值你还想做什么操作啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式