Home > Database > Mysql Tutorial > Access如何模糊参数进行分页查询代码

Access如何模糊参数进行分页查询代码

WBOY
Release: 2016-06-07 16:22:35
Original
1137 people have browsed it

具体代码如下: string sql = Select Count(ID) As rcount From TbProduct WHERE classID IN( + ids + ) AND PRODUCTNAME LIKE '%'+@ProductName+'%'; OleDbParameter[] sps = new OleDbParameter[1]; sps[0] = AccessDB.CreateParameter(@ProductName, OleD

   具体代码如下:

  string sql = "Select Count(ID) As rcount From TbProduct WHERE classID IN(" + ids + ") AND PRODUCTNAME LIKE '%'+@ProductName+'%'";

  OleDbParameter[] sps = new OleDbParameter[1];

  sps[0] = AccessDB.CreateParameter("@ProductName", OleDbType.VarChar, productName, 50, ParameterDirection.Input);

  int resultCount = (int)AccessDB.ExecuteScalar(sql, sps);

  recordCount = resultCount;

  if (resultCount >= 0)

  {

  if ((resultCount % pageSize) == 0)

  {

  pageCount = resultCount / pageSize;

  }

  else

  {

  pageCount = (resultCount / pageSize) + 1;

  }

  if (pageIndex == 1)

  {

  sql = "Select Top " + pageSize.ToString() + " * From TbProduct WHERE classID IN(" + ids + ") AND PRODUCTNAME LIKE '%'+@ProductName+'%' Order by ID desc";

  }

  else

  {

  int minRecord = (pageIndex - 1) * pageSize;

  sql = "Select Top " + pageSize.ToString() + " * From TbProduct Where ID Not In(Select ID From (Select Top " + minRecord.ToString() + " ID From tbProduct Where classID IN(" + ids + ") AND PRODUCTNAME LIKE '%'+@ProductName+'%' Order by ID desc )TemA) And classID IN(" + ids + ") AND PRODUCTNAME LIKE '%'+@ProductName+'%' Order by ID desc";

  }

  }

  else

  {

  pageCount = 0;

  }

  return AccessDB.ExecuteDataSet(sql, sps).Tables[0];

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template