summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--execute.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/execute.c b/execute.c
index e73d19b..f2877d4 100644
--- a/execute.c
+++ b/execute.c
@@ -1638,6 +1638,13 @@ internal_function_handler ihandlers[] = {
1638 { "maxdb::prepare", ih_querycheck, (void *)1, NULL, NULL }, 1638 { "maxdb::prepare", ih_querycheck, (void *)1, NULL, NULL },
1639 { "maxdb_prepare", ih_querycheck, (void *)2, NULL, NULL }, 1639 { "maxdb_prepare", ih_querycheck, (void *)2, NULL, NULL },
1640 1640
1641 /* PDO */
1642 /* note: mysql conditional comments not supported here */
1643 { "pdo::__construct", ih_fixusername, (void *)2, NULL, NULL }, /* note: username may come from dsn (param 1) */
1644 { "pdo::query", ih_querycheck, (void *)1, NULL, NULL },
1645 { "pdo::prepare", ih_querycheck, (void *)1, NULL, NULL },
1646 { "pdo::exec", ih_querycheck, (void *)1, NULL, NULL },
1647
1641 /* Oracle OCI8 */ 1648 /* Oracle OCI8 */
1642 { "ocilogon", ih_fixusername, (void *)1, NULL, NULL }, 1649 { "ocilogon", ih_fixusername, (void *)1, NULL, NULL },
1643 { "ociplogon", ih_fixusername, (void *)1, NULL, NULL }, 1650 { "ociplogon", ih_fixusername, (void *)1, NULL, NULL },