├── README.md ├── composer.json └── src └── PHPSQL ├── Creator.php ├── Exception ├── Exception.php ├── InvalidParameter.php ├── UnableToCalculatePosition.php ├── UnableToCreateSQL.php └── UnsupportedFeature.php ├── Expression ├── Token.php └── Type.php ├── Parser.php └── Parser ├── Constants.php ├── Lexer.php ├── Lexer └── Splitter.php ├── PositionCalculator.php └── Utils.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/composer.json -------------------------------------------------------------------------------- /src/PHPSQL/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Creator.php -------------------------------------------------------------------------------- /src/PHPSQL/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Exception/Exception.php -------------------------------------------------------------------------------- /src/PHPSQL/Exception/InvalidParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Exception/InvalidParameter.php -------------------------------------------------------------------------------- /src/PHPSQL/Exception/UnableToCalculatePosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Exception/UnableToCalculatePosition.php -------------------------------------------------------------------------------- /src/PHPSQL/Exception/UnableToCreateSQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Exception/UnableToCreateSQL.php -------------------------------------------------------------------------------- /src/PHPSQL/Exception/UnsupportedFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Exception/UnsupportedFeature.php -------------------------------------------------------------------------------- /src/PHPSQL/Expression/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Expression/Token.php -------------------------------------------------------------------------------- /src/PHPSQL/Expression/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Expression/Type.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser/Constants.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser/Lexer.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser/Lexer/Splitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser/Lexer/Splitter.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser/PositionCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser/PositionCalculator.php -------------------------------------------------------------------------------- /src/PHPSQL/Parser/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundintheory/php-sql-parser/HEAD/src/PHPSQL/Parser/Utils.php --------------------------------------------------------------------------------