Hello,
in PDO you can use one liner(almost) to get the total nr of rows of your DB table
$nRows = $pdo->query('select count(*) from blah')->fetchColumn();
echo $nRows;
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.