I'm just looking for a list of supported databases with the rowCount() method from PDO. I know this sounds like a RFTM question, but I honestly cannot find anything at all relating to which specific databases it will work on. All I know about it is this from the manual:
PDOStatement::rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object.
If the last SQL statement executed by the associated PDOStatement was a SELECT statement, some databases may return the number of rows returned by that statement. However, this behaviour is not guaranteed for all databases and should not be relied on for portable applications.
I also know this works in MySQL, and will not work on MS Server but what about the other databases which PDO supports?