|  | 
 
| /** * Limit string
 *
 * Generates a platform-specific LIMIT clause
 *
 * @access        public
 * @param        string        the sql query string
 * @param        integer        the number of rows to limit the query to
 * @param        integer        the offset value
 * @return        string
 */
 function _limit($sql, $limit, $offset)
 {
 // Does ODBC doesn't use the LIMIT clause?
 return $sql;
 }
 
 居然是这个,狂ft
 我现在是用access,基本把整个odbc转移成access,但是分页困扰了我
 不知道如何实现,纯sql?
 | 
 |