php-developer-list | 2001122

[PHP-DEV] Bug #14419 Updated: Please use Character-enable mysql_escape From: zak <email protected>
Date: 12/31/01

ID: 14419
Updated by: zak
Reported By: ycheng <email protected>
Old Status: Open
Status: Assigned
Bug Type: MySQL related
Operating System: All
PHP Version: 4.1.0
Old Assigned To:
Assigned To: zak
New Comment:

Thanks for the suggestion!

I will investigate this.

Previous Comments:
------------------------------------------------------------------------

[2001-12-11 03:41:15] ycheng <email protected>

in file php-4.1.0/ext/mysql/php_mysql.c line 1365
-------------------------------
Z_STRLEN_P(return_value) = mysql_escape_string(Z_STRVAL_P(return_value), Z_STRVAL_PP(str), Z_STRLEN_PP(str));
-------------------------------
could you change from
mysq_escape_string into mysql_
to something like
#if MYSQL_VERSION_ID < 32321
        len = mysql_escape_string(out, in, size);
#else
        if (self) {
                check_connection(self);
                len = mysql_real_escape_string(&(self->connection), out, in, size);
        }
        else
                len = mysql_escape_string(out, in, size);
#endif

(quote from mysql python module)

------------------------------------------------------------------------

Edit this bug report at http://bugs.php.net/?id=14419&edit=1

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>