[PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-11-22 Thread Frank M. Kromann
fmk Mon Nov 22 17:40:21 2004 EDT Modified files: /php-src/ext/fbsql php_fbsql.c php_fbsql.h Log: Adding fbsql_set_characterset. Change PHP_INI_USER to PHP_INI_ALL on fbsql.batchsize http://cvs.php.net/diff.php/php-src/ext/fbsql/php_fbsql.c?r1=1.106&r2=1.10

[PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-08-24 Thread Frank M. Kromann
fmk Tue Aug 24 13:59:01 2004 EDT Modified files: /php-src/ext/fbsql php_fbsql.c php_fbsql.h Log: Add fbsql_rows_fetched() - returns the total number of rows fetched. Fix a possible crash in fbsql_database() if the function was called before a connection was

Re: [PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-02-27 Thread Andi Gutmans
At 12:53 27/02/2004 -0800, Frank M. Kromann wrote: Thanks Andi, I'm planning a lot mor changes to the fbsql extension, but those will wait til after the release. OK... The emalloc(17) is used to create a buffer for the digest function. It always returns a 16 byte string. I guess I could use emall

Re: [PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-02-27 Thread Frank M. Kromann
Thanks Andi, I'm planning a lot mor changes to the fbsql extension, but those will wait til after the release. The emalloc(17) is used to create a buffer for the digest function. It always returns a 16 byte string. I guess I could use emalloc(16), but I'll add a define like this: #define DIGETS_

Re: [PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-02-27 Thread Andi Gutmans
Yep, we really shouldn't be adding new features. However, fbsql is pretty isolated and so is the patch so I think it's OK. I really don't like the following piece of code though: digest = emalloc(17); Is it possible to use some #define or sizeof("foobar") so that it is clear what 17 means? Thanks

[PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-02-26 Thread Frank M. Kromann
fmk Thu Feb 26 15:31:15 2004 EDT Modified files: /php-src/ext/fbsql php_fbsql.c php_fbsql.h Log: Adding function to change user passwords http://cvs.php.net/diff.php/php-src/ext/fbsql/php_fbsql.c?r1=1.103&r2=1.104&ty=u Index: php-src/ext/fbsql/php_fbsql.c d

Re: [PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2004-02-26 Thread Jan Lehnardt
Hi, On 26 Feb 2004, at 21:31, Frank M. Kromann wrote: fmk Thu Feb 26 15:31:15 2004 EDT Modified files: /php-src/ext/fbsql php_fbsql.c php_fbsql.h Log: Adding function to change user passwords bugfix-only-and-feature-freeze-please-check-with-andi-alert. Jan -- -- PHP CVS Mailing List (

[PHP-CVS] cvs: php-src /ext/fbsql php_fbsql.c php_fbsql.h

2003-07-03 Thread Frank M. Kromann
fmk Thu Jul 3 12:48:18 2003 EDT Modified files: /php-src/ext/fbsql php_fbsql.c php_fbsql.h Log: Change fetch functions and protos so they make more sense. fetch_row or fetch_assoc should not take the optional parameter Index: php-src/ext/fbsql/php_fbsql