您的位置:首页 > 数据库

MSSQLSERVER数据库- C#里调用存储过程,多参数查询,个人记录

2013-03-14 16:24 363 查看
  这是我第一次使用存储过程,进行表合并后这么多参数的查询。

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

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());
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: