1
0
mirror of synced 2025-01-18 22:41:43 +03:00
2007-12-10 20:02:41 +00:00

25 lines
742 B
PHP

<?php
/**
* QueryLanguage = SelectStatement | UpdateStatement | DeleteStatement
*/
class Doctrine_Query_Production_QueryLanguage extends Doctrine_Query_Production
{
public function execute(array $params = array())
{
switch ($this->_parser->lookahead['type']) {
case Doctrine_Query_Token::T_SELECT:
case Doctrine_Query_Token::T_FROM:
$this->SelectStatement();
break;
case Doctrine_Query_Token::T_UPDATE:
$this->UpdateStatement();
break;
case Doctrine_Query_Token::T_DELETE:
$this->DeleteStatement();
break;
default:
$this->_parser->syntaxError();
}
}
}