Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: PHP-8.4.1, PHP-Apricot
-
Component/s: PHPDriver
-
Labels:None
Description
cubrid_affected_rows pass request resource at the first begging. However, in order to be compatible with MySQL, it changed its parameter.
from
int cubrid_affected_rows ([ resource $result ] )
to
int cubrid_affected_rows ([ resource $conn_identifier ] )
But we need to be compatible with the previous version, so we make this function to support the following use:
int cubrid_affected_rows ( ) int cubrid_affected_rows ( resource $result ) int cubrid_affected_rows ( resource $conn_identifier )

Commit rev on PHP-Apricot: 837