Can anyone tell me how I can limit records in MS Access. I have seen how that can be done in MySQL.
Thanking you in advance
the LIMIT keyword doesnt seem to work on Access. i do something like this:
$limit = 15;
while($record = $result->fetchRow()) { if($r_count++>$limit) break; ... }
-paul http://xhawk.net