Re: [PHP-DEV] [PATCH] pg_escape_literal/pg_escape_identifier for pgsql

2011-05-24 Thread Hannes Magnusson
On Tue, May 24, 2011 at 06:37, Yasuo Ohgaki yohg...@ohgaki.net wrote: 2011/5/20 Hannes Magnusson hannes.magnus...@gmail.com: On Fri, May 20, 2011 at 03:24, Yasuo Ohgaki yohg...@ohgaki.net wrote: Hi all Current PostgreSQL has new escape functions for literals and identifiers. Since there is

Re: [PHP-DEV] [PATCH] pg_escape_literal/pg_escape_identifier for pgsql

2011-05-23 Thread Yasuo Ohgaki
2011/5/20 Hannes Magnusson hannes.magnus...@gmail.com: On Fri, May 20, 2011 at 03:24, Yasuo Ohgaki yohg...@ohgaki.net wrote: Hi all Current PostgreSQL has new escape functions for literals and identifiers. Since there is no function for that, I made patch for that. Attached patch is for

Re: [PHP-DEV] [PATCH] pg_escape_literal/pg_escape_identifier for pgsql

2011-05-23 Thread Yasuo Ohgaki
2011/5/24 Yasuo Ohgaki yohg...@ohgaki.net: Should we really provide fallback if PQescape(Literal|Identifier) isn't available? Did you copy the escaping from postgresql directly? Wouldn't it nice to have the same escaping capability for 8.x? It's not possible to copy the code, since it's

Re: [PHP-DEV] [PATCH] pg_escape_literal/pg_escape_identifier for pgsql

2011-05-20 Thread Hannes Magnusson
On Fri, May 20, 2011 at 03:24, Yasuo Ohgaki yohg...@ohgaki.net wrote: Hi all Current PostgreSQL has new escape functions for literals and identifiers. Since there is no function for that, I made patch for that. Attached patch is for trunk and tested with PostgreSQL 8.4 and 9.0. This patch

[PHP-DEV] [PATCH] pg_escape_literal/pg_escape_identifier for pgsql

2011-05-19 Thread Yasuo Ohgaki
Hi all Current PostgreSQL has new escape functions for literals and identifiers. Since there is no function for that, I made patch for that. Attached patch is for trunk and tested with PostgreSQL 8.4 and 9.0. This patch would also applied to 5.4 branch but how about 5.3? It's pain not to have