[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_fe.c php_mysqli_structs.h /ext/mysqlnd mysqlnd_enum_n_def.h mysqlnd_libmysql_compat.h

2009-01-22 Thread Johannes Schlüter
johannesThu Jan 22 20:57:33 2009 UTC Modified files: /php-src/ext/mysqlndmysqlnd_enum_n_def.h mysqlnd_libmysql_compat.h /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_fe.c php_mysqli_structs.h Log: - Export

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c /ext/mysqli/tests bug46109.phpt

2008-09-19 Thread Andrey Hristov
andrey Fri Sep 19 11:35:37 2008 UTC Added files: /php-src/ext/mysqli/tests bug46109.phpt Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c Log: Fix for bug#46019 MySQLi::init() leaks memory

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c /ext/mysqli/tests bug46109.phpt

2008-09-19 Thread Antony Dovgal
Err.. This can't be right, Andrey. On 19.09.2008 15:35, Andrey Hristov wrote: http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/mysqli.c?r1=1.133r2=1.134diff_format=u Index: php-src/ext/mysqli/mysqli.c diff -u php-src/ext/mysqli/mysqli.c:1.133 php-src/ext/mysqli/mysqli.c:1.134 ---

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c /ext/mysqli/tests bug46109.phpt

2008-09-19 Thread Andrey Hristov
Hi Tony, I noticed it when I saw what files are being committed :( Sorry! Andrey Antony Dovgal wrote: Err.. This can't be right, Andrey. On 19.09.2008 15:35, Andrey Hristov wrote: http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/mysqli.c?r1=1.133r2=1.134diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_fe.c mysqli_nonapi.c php_mysqli_structs.h /ext/mysqli/tests bug39457.phpt

2008-03-08 Thread Andrey Hristov
andrey Sat Mar 8 15:16:08 2008 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_fe.c mysqli_nonapi.c php_mysqli_structs.h /php-src/ext/mysqli/tests bug39457.phpt Log: MFB: - Fixed problem with

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c php_mysqli_structs.h /ext/mysqli/tests mysqli_real_connect.phpt mysqli_real_connect_pconn.phpt

2008-02-06 Thread Andrey Hristov
andrey Wed Feb 6 11:35:44 2008 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c php_mysqli_structs.h /php-src/ext/mysqli/tests mysqli_real_connect.phpt

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c php_mysqli_structs.h

2007-11-09 Thread Andrey Hristov
andrey Fri Nov 9 12:13:15 2007 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c php_mysqli_structs.h Log: Fix crashes with pconn (merge from 5_3)

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c

2007-10-17 Thread Antony Dovgal
tony2001Wed Oct 17 08:17:34 2007 UTC Modified files: /php-src/ext/mysqli mysqli_api.c mysqli.c Log: use correct dtor and variable for the callback http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/mysqli_api.c?r1=1.151r2=1.152diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c /ext/mysqli/tests 068.phpt

2006-10-02 Thread Andrei Zmievski
Great! So, has anyone tested or played around with the mysqli extension after these updates? -Andrei On Oct 1, 2006, at 2:01 PM, Georg Richter wrote: georg Sun Oct 1 21:01:31 2006 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c /ext/mysqli/tests 068.phpt

2006-10-01 Thread Georg Richter
georg Sun Oct 1 21:01:31 2006 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c /php-src/ext/mysqli/tests 068.phpt Log: unicode fixes http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/mysqli.c?r1=1.99r2=1.100diff_format=u

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c php_mysqli.h

2006-09-29 Thread Georg Richter
Am Do, den 28.09.2006 schrieb Andrei Zmievski um 18:43: Hello Andrei, A couple more notes. Thanks, I will fix it this weekend. Also, I don't know much about MySQL client library, but it seems that it only works in UTF-8 mode. Is this correct? Does it translate UTF-8 to other charsets

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c php_mysqli.h

2006-09-28 Thread Andrei Zmievski
Hi Georg, A couple more notes. 1. This can be simplified: if (UG(unicode)) { zend_string_to_unicode(UG(utf8_conv), ustr, ulen, row[i], field_len[i] TSRMLS_CC); ZVAL_UNICODEL(res, ustr, ulen, 0); } else { ZVAL_STRINGL(res, row[i], field_len[i], 1); } Use ZVAL_UTF8_STRINGL(res, row[i],

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c php_mysqli.h

2006-09-27 Thread Georg Richter
georg Wed Sep 27 15:25:52 2006 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c php_mysqli.h Log: ZTS fixes. Implemented Andrei's hints (simplifying unicode stuff)

Re: [PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c mysqli_report.c php_mysqli.h /ext/mysqli/tests 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt

2006-09-26 Thread Antony Dovgal
ZTS build is badly broken =( On 26.09.2006 17:06, Georg Richter wrote: georg Tue Sep 26 13:06:13 2006 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c mysqli_driver.c mysqli_nonapi.c mysqli_prop.c mysqli_report.c

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c

2006-05-10 Thread Andrey Hristov
andrey Wed May 10 12:29:10 2006 UTC Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/ext/mysqli/mysqli.c?r1=1.87r2=1.88diff_format=u Index: php-src/ext/mysqli/mysqli.c diff -u

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c /ext/mysqli/tests 064.phpt

2005-05-05 Thread Georg Richter
georg Thu May 5 09:02:32 2005 EDT Added files: /php-src/ext/mysqli/tests 064.phpt Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c Log: fixed memleak in mysqli_close fixed bug #32956 (mysqli_bind_result doesn't support

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c

2005-04-20 Thread Georg Richter
georg Wed Apr 20 08:50:15 2005 EDT Modified files: /php-src/ext/mysqli mysqli.c mysqli_api.c Log: added support for data truncation (bind_result) for MySQL 5.0.5 http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.64r2=1.65ty=u Index:

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_nonapi.c php_mysqli.h

2004-08-25 Thread Georg Richter
georg Wed Aug 25 09:57:35 2004 EDT Modified files: /php-src/ext/mysqli mysqli_api.c mysqli.c mysqli_nonapi.c php_mysqli.h Log: changed local_infile_handler: mysql client lib now uses php_local_infile functions by default, which

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c mysqli_prop.c mysqli_report.c php_mysqli.h

2004-03-16 Thread Georg Richter
georg Tue Mar 16 16:43:26 2004 EDT Modified files: /php-src/ext/mysqli mysqli.c php_mysqli.h mysqli_api.c mysqli_report.c mysqli_prop.c Log: fixed stmt-stmt-query which was removed in libmysql 4.1.2 added query buffer in internal stmt

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c

2004-02-11 Thread Georg Richter
georg Wed Feb 11 03:34:10 2004 EDT Modified files: /php-src/ext/mysqli mysqli_api.c mysqli.c Log: removed printfs :) Thx Andi! http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_api.c?r1=1.69r2=1.70ty=u Index: php-src/ext/mysqli/mysqli_api.c diff -u

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c

2004-02-10 Thread Georg Richter
georg Wed Feb 11 02:38:44 2004 EDT Modified files: /php-src/ext/mysqli mysqli_api.c mysqli.c Log: changed first parameter in mysqli_bind_param from array to string (as discussed on berlin db meeting)

[PHP-CVS] cvs: php-src /ext/mysqli mysqli.c mysqli_api.c php_mysqli.h

2003-07-15 Thread Georg Richter
georg Tue Jul 15 06:37:19 2003 EDT Modified files: /php-src/ext/mysqli php_mysqli.h mysqli.c mysqli_api.c Log: added support for rebind Index: php-src/ext/mysqli/php_mysqli.h diff -u php-src/ext/mysqli/php_mysqli.h:1.17