mirror of
https://github.com/php/pecl-database-pdo_user.git
synced 2026-03-23 22:42:10 +01:00
$ret = PDO_User::parseSQL($sql); Will return a complex nested array structure containing a script navigable representation of a given SQL statement. No, this isn't a complete implementation of SQL99. No, this doesn't allow multiple statements separated by a semicolon. No, the parser generation isn't built into the Makefile.frag (yet).
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("pdo-user", "for pdo_user support", "no");
|
|
|
|
if (PHP_PDO_USER != "no") {
|
|
|
|
EXTENSION("pdo_user", "pdo_user.c pdo_user_driver.c pdo_user_statement.c pdo_user_object.c pdo_user_sql_tokenizer.c pdo_user_sql_parser.c");
|
|
ADD_EXTENSION_DEP('pdo_user', 'pdo');
|
|
}
|
|
|