Files
archived-pecl-database-pdo-…/config.w32
Sara Golemon dcc7e0b411 Implement a generic SQL parser for userspace.
$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).
2006-05-09 01:58:46 +00:00

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');
}