From a97e1a66466a6a59a6bf1d1ede4a2493822080fb Mon Sep 17 00:00:00 2001 From: George Schlossnagle Date: Tue, 18 May 2004 15:19:31 +0000 Subject: handle binding/quoting of queries for drivers with emulated prepares --- ext/pdo/php_pdo_sql_parser.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ext/pdo/php_pdo_sql_parser.h (limited to 'ext/pdo/php_pdo_sql_parser.h') diff --git a/ext/pdo/php_pdo_sql_parser.h b/ext/pdo/php_pdo_sql_parser.h new file mode 100644 index 0000000000..8cc0558304 --- /dev/null +++ b/ext/pdo/php_pdo_sql_parser.h @@ -0,0 +1,7 @@ +#ifndef PHP_PDO_MYSQL_SQL_PARSER_H +#define PHP_PDO_MYSQL_SQL_PARSER_H +#include "php.h" +int pdo_parse_params(pdo_stmt_t *stmt, char *inquery, int inquery_len, char **outquery, + int *outquery_len); + +#endif -- cgit v1.2.1