zoukankan      html  css  js  c++  java
  • MSSQLSERVER数据库 C#里调用存储过程,多参数查询,个人记录

      这是我第一次使用存储过程,进行表合并后这么多参数的查询。

      记录一下大概的例子,以便下次查阅

                StringBuilder sb = new StringBuilder();
    
                sb.AppendFormat(" BankID='{0}' ", ddlBank.SelectedValue);
    
                if (txtCheckDateStart.Value != "" && txtCheckDateEnd.Value != "")
                {
                    sb.AppendFormat(" And CheckDate Between '{0}' And '{1}' ", txtCheckDateStart.Value, txtCheckDateEnd.Value);
                }
    
                if (txtImportDateEnd.Value != "" && txtImportDateStart.Value != "")
                {
                    sb.AppendFormat(" And ImportDate Between '{0}' And '{1}' ", txtImportDateStart.Value, txtImportDateEnd.Value);
                }
    
                if (txtUserName.Text != "")
                {
                    sb.AppendFormat(" And LoginName='{0}' ", txtUserName.Text);
                }
    
                if (txtCheckInAmount.Text != "")
                {
                    sb.AppendFormat(" And CheckInAmount='{0}' ", txtCheckInAmount.Text);
                }
                Response.Write(sb.ToString());
                //GridView1.DataSource = DbHelperSQL.GetSplitPageList("BankDataImport", "*", "ID", "DESC", 12, 1, "");
                //GridView1.DataSource = DbHelperSQL.GetSplitPageList(@"BankDataImport b inner join Users u on b.UserId = u.Id",
                //        "b.ID, b.UserID, b.ImportDate, b.CheckDate, b.CheckOutAmount, b.CheckInAmount, b.BankID, b.Remark, b.UCheckInAmount, b.DeptID,u.LoginName","b.Id","DESC",20,1,"");
    
                GridView1.DataSource = DbHelperSQL.GetSplitPageList("BankDataImport b inner join Users u on b.UserId = u.Id", "b.ID,b.UserID,b.ImportDate,b.CheckDate,b.CheckOutAmount,b.CheckInAmount,b.BankID,b.Remark,b.UCheckInAmount,b.DeptID,u.LoginName", "b.ID", "DESC", 12, 1, sb.ToString());
  • 相关阅读:
    Android系统根文件系统目录结构
    4面 晶晨半导体 问题总结
    linux 工作队列
    Linux tasklet 的测试
    ArbotiX-M引脚说明
    locobot
    视频地址
    S1雷达ROS包更新指南
    rospy
    mx-28在 labview环境下的开发
  • 原文地址:https://www.cnblogs.com/cxeye/p/2959571.html
Copyright © 2011-2022 走看看