pdo

  1. S

    B4J Question total rows from db table via jRDC

    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...
Top