How do I implement pagination in SQL for MS Access?

前端 未结 6 1475
自闭症患者
自闭症患者 2020-11-30 06:02

I\'m accessing a Microsoft Access 2002 database (MDB) using ASP.NET through the OdbcConnection class, which works quite well albeit very slowly.

My quest

6条回答
  •  忘掉有多难
    2020-11-30 06:49

    One easy way to use limit or get pagination working in access is to use ADODB library which support pagination for many DBs with same syntax. http://phplens.com/lens/adodb/docs-adodb.htm#ex8 Its easy to modify/override pager class to fetch required number of rows in array format then.

提交回复
热议问题