Hello, Why is there no PDO equivalent for mysqli_info()?
While using PDO/prepared statements, there should be a way to differentiate between these update results: 1. Found record, no update due to same data and 2. Found record, update Right now, rowCount() will return the same integer for both (different) results, the same with setting the attribute array(PDO::MYSQL_ATTR_FOUND_ROWS => true). Will there be a way to tell the difference between those two update scenarios? Thanks.
