Hello,
in PDO you can use one liner(almost) to get the total nr of rows of your DB table
is there something similar for jRDC, so I do not need to fetch all data and then count it in my program, but let the server count it?
Thanks a lot.
in PDO you can use one liner(almost) to get the total nr of rows of your DB table
pdo:
$nRows = $pdo->query('select count(*) from blah')->fetchColumn();
echo $nRows;
Thanks a lot.