首页上一页 1 下一页尾页 1 条记录 1/1页
asp.net项目开发实录第一章中的问题
发表在ASP.NET图书答疑
2009-04-30
是否精华
是
否
版块置顶:
是
否
[font size=3]在线等。。。。。。。 [/font]
private SqlCommand CreateCommand(string procName, SqlParameter[] prams)
{
this.Open();
SqlCommand cmd = new SqlCommand(procName, conn);
cmd.CommandType = CommandType.Text;
if (prams!=null)
{
foreach (SqlParameter parameter in prams)
{
cmd.Parameters.Add(parameter);
}
}
//加入返回参数
cmd.Parameters.Add(new SqlParameter("ReturnValue", SqlDbType.Int, 4, ParameterDirection.ReturnValue, false, 0, 0, string.Empty, DataRowVersion.Default, null));
return cmd;
}
其中加入返回参数这一行不太清楚其作用,为何要加这一句。因为我很少接触到这么多的参数!一下子有点搞不清楚,搞不明白!
还有ParameterDirection Direction参数也不太明白,
还请老师给予详解一下这一句的意思!谢谢。。。。
在线等。。。。。。。
private SqlCommand CreateCommand(string procName, SqlParameter[] prams)
{
this.Open();
SqlCommand cmd = new SqlCommand(procName, conn);
cmd.CommandType = CommandType.Text;
if (prams!=null)
{
foreach (SqlParameter parameter in prams)
{
cmd.Parameters.Add(parameter);
}
}
//加入返回参数
cmd.Parameters.Add(new SqlParameter("ReturnValue", SqlDbType.Int, 4, ParameterDirection.ReturnValue, false, 0, 0, string.Empty, DataRowVersion.Default, null));
return cmd;
}
其中加入返回参数这一行不太清楚其作用,为何要加这一句。因为我很少接触到这么多的参数!一下子有点搞不清楚,搞不明白!
还有ParameterDirection Direction参数也不太明白,
还请老师给予详解一下这一句的意思!谢谢。。。。
在线等。。。。。。。