From: George Schlossnagle Date: Thu, 20 May 2004 17:04:57 +0000 (+0000) Subject: iactually support :\w+ as binds X-Git-Tag: RELEASE_0_1~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76b7b5d1e26b55ddbd0bc20108e0f70f10694116;p=php iactually support :\w+ as binds --- diff --git a/ext/pdo/pdo_sql_parser.re b/ext/pdo/pdo_sql_parser.re index fbec7419fc..22ab404e88 100644 --- a/ext/pdo/pdo_sql_parser.re +++ b/ext/pdo/pdo_sql_parser.re @@ -43,7 +43,7 @@ static int scan(Scanner *s) std: s->tok = cursor; /*!re2c - BINDCHR = [:][a-zA-Z0-9]+; + BINDCHR = [:][a-zA-Z0-9_]+; SPECIALS = [:"]; ESC = [\\]["]; EOF = [\000];