ページングを使用して datagridview にデータを表示するためにこの関数を使用してpage 1
いますnext last 10 rows
。私の間違いですが、cmd2 query of else part
それは何ですか?Access データベースを使用しています
private DataTable GetCurrentRecords(int page, OleDbConnection con)
{
dt = new DataTable();
if (page == 1)
{
cmd2 = new OleDbCommand("Select TOP " + PageSize + " QID,Question,Opt1,Opt2,Opt3,Opt4,AnsOp,Marks from Questions ORDER BY QID DESC", con);
// CurrentPageIndex++;
}
else
{
int PreviouspageLimit = (page - 1) * PageSize;
cmd2 = new OleDbCommand("Select TOP " + PageSize +
" QID,Question,Opt1,Opt2,Opt3,Opt4,AnsOp,Marks from Questions " +
"WHERE QID NOT IN " +
"(Select TOP " + PreviouspageLimit + " QID from Questions ORDER BY QID DESC) ", con); // +
//"order by MedicalClgID", con);
}
try
{
// con.Open();
this.adp1.SelectCommand = cmd2;
this.adp1.Fill(dt);
txtPaging.Text = string.Format("{0} of {1} ", this.CurrentPageIndex, this.TotalPage);
}
finally
{
// con.Close();
}
return dt;
}