美文网首页
2018-10-04

2018-10-04

作者: yangchch | 来源:发表于2018-10-04 11:33 被阅读0次

    测试

     List<DbParameter> paras = getDbParameter(request, db);
                    foreach (var param in paras)
                    {
                        sb.AppendLine("     参数名:" + param.ParameterName + "," + "参数值:" + ((param.Value == null) ? "" : param.Value.ToString()));
                    }
    
                    DataSet ds = db.FindDataSetByProc(request.Protocol.ProcedureName, paras.ToArray());
                    if ((ds.Tables.Count > 0) && (ds.Tables[0].Rows.Count > 0))
                    {
                        response.htResult = GetResponseContent(request, ds, paras);
                    }
    
                    DbParameter pErrCode = paras.SingleOrDefault(t => t.ParameterName == "out_code");
                    DbParameter pMsg = paras.SingleOrDefault(t => t.ParameterName == "out_msg");
    

    相关文章

      网友评论

          本文标题:2018-10-04

          本文链接:https://www.haomeiwen.com/subject/aulxaftx.html