summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_sql_parser.h
diff options
context:
space:
mode:
authorGeorge Schlossnagle <gschlossnagle@php.net>2004-05-18 15:19:31 +0000
committerGeorge Schlossnagle <gschlossnagle@php.net>2004-05-18 15:19:31 +0000
commita97e1a66466a6a59a6bf1d1ede4a2493822080fb (patch)
tree85e69b2ac3fede9c6dfa065c354b9a7d8f9910ff /ext/pdo/php_pdo_sql_parser.h
parent3e0cbfb07797d11d005ddb8a40c1b5d018adad7c (diff)
downloadphp-git-a97e1a66466a6a59a6bf1d1ede4a2493822080fb.tar.gz
handle binding/quoting of queries for drivers with emulated prepares
Diffstat (limited to 'ext/pdo/php_pdo_sql_parser.h')
-rw-r--r--ext/pdo/php_pdo_sql_parser.h7
1 files changed, 7 insertions, 0 deletions
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