1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/draft/Doctrine/Query/Production/QueryLanguage.php
2008-01-12 22:32:45 +00:00

25 lines
739 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->logError();
}
}
}