Re: [PHP-DEV] pdo_mysql patch

2007-06-25 Thread Kevin Waterson
This one time, at band camp, Ilia Alshanetsky <[EMAIL PROTECTED]> wrote: > Will this mechanism for differentiating between TEXT and BLOB work in > MySQL 3.23? >From what I can see of the c api, the 3.23 and 4 api is the same. So should work in both. Kevin -- "Democracy is two wolves and a l

Re: [PHP-DEV] pdo_mysql patch

2007-06-25 Thread Kevin Waterson
This one time, at band camp, Ilia Alshanetsky <[EMAIL PROTECTED]> wrote: > Will this mechanism for differentiating between TEXT and BLOB work in > MySQL 3.23? unable to test with 3.* Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb

Re: [PHP-DEV] pdo_mysql patch

2007-06-25 Thread Kevin Waterson
This one time, at band camp, Ilia Alshanetsky <[EMAIL PROTECTED]> wrote: > Will this mechanism for differentiating between TEXT and BLOB work in > MySQL 3.23? unable to test with 3.* Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb

Re: [PHP-DEV] pdo_mysql patch

2007-06-25 Thread Ilia Alshanetsky
Will this mechanism for differentiating between TEXT and BLOB work in MySQL 3.23? On 25-Jun-07, at 9:49 PM, Kevin Waterson wrote: currently pdo_mysql is unable to discern between a BLOB and a TEXT field in mysql_statement.c By using the current if (IS_BLOB(F->flags)), which is now depre

[PHP-DEV] pdo_mysql patch

2007-06-25 Thread Kevin Waterson
currently pdo_mysql is unable to discern between a BLOB and a TEXT field in mysql_statement.c By using the current if (IS_BLOB(F->flags)), which is now deprecated in the mysql c api, it will be true for both TEXT and BLOB fields. By updating a little to the newer api and checking with F->type we