I have this function from: https://github.com/IgnitedDatatables/Ignited-Datatables/
private function get_paging()
{
$iStart = $this->ci->input->post('iDisplayStart');
$iLength = $this->ci->input->post('iDisplayLength');
if($iLength != '' && $iLength != '-1')
$this->ci->db->limit($iLength, ($iStart)? $iStart : 0);
}
In MySQL this function works perfectly. However, in MS Access won't work because "limit" is not supported. So my question is how can I change
$this->ci->db->limit($iLength, ($iStart)? $iStart : 0);
to a MS Access notation?