| // | Mocha (http://us4.php.net/pg_escape_bytea) | // +----------------------------------------------------------------------+ // // $Id$ /** * Replace pg_affected_rows() * * @category PHP * @package PHP_Compat * @link http://php.net/function.pg_affectd_rows * @author Ian Eure * @version $Revision@ * @since PHP 4.2.0 * @require PHP 4.0.0 */ if (!function_exists('pg_affected_rows')) { function pg_affected_rows($resource) { return pg_cmdtuples($resource); } } ?>