SQl-Parser:
- changes error output if statement is unknown - QA
Dieser Commit ist enthalten in:
Ursprung
e95ab08945
Commit
76b02c64e7
2 geänderte Dateien mit 18 neuen und 31 gelöschten Zeilen
|
@ -396,9 +396,9 @@ class SqlController extends Zend_Controller_Action
|
||||||
}
|
}
|
||||||
$statements = $parser->getParsedStatements();
|
$statements = $parser->getParsedStatements();
|
||||||
foreach ($statements as $statement) {
|
foreach ($statements as $statement) {
|
||||||
//echo "<br>Extracted statement: ".$statement;
|
echo "<br>Extracted statement: ".$statement;
|
||||||
try {
|
try {
|
||||||
$res = $this->_db->query($statement, Msd_Db::ARRAY_ASSOC);
|
$res = array(); // $this->_db->query($statement, Msd_Db::ARRAY_ASSOC);
|
||||||
$this->view->resultset = $res;
|
$this->view->resultset = $res;
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
$this->view->errorMessage = $e->getMessage();
|
$this->view->errorMessage = $e->getMessage();
|
||||||
|
|
|
@ -33,15 +33,6 @@ class Msd_Sql_Parser implements Iterator
|
||||||
*/
|
*/
|
||||||
private $_parsingSummary = array();
|
private $_parsingSummary = array();
|
||||||
|
|
||||||
/**
|
|
||||||
* MySQL comment types.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $_sqlComments = array(
|
|
||||||
'--' => "\n", '/*' => '*/', '/*!' => '*/'
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to save debug output
|
* Whether to save debug output
|
||||||
*
|
*
|
||||||
|
@ -80,38 +71,34 @@ class Msd_Sql_Parser implements Iterator
|
||||||
*/
|
*/
|
||||||
public function parse()
|
public function parse()
|
||||||
{
|
{
|
||||||
$statementCounter = 0;
|
|
||||||
while ($this->_sql->hasMoreToProcess() && $this->_sql->movePointerToNextCommand() !== false) {
|
while ($this->_sql->hasMoreToProcess() && $this->_sql->movePointerToNextCommand() !== false) {
|
||||||
// check for comments or conditional comments
|
// check for comments or conditional comments
|
||||||
$commentCheck = $this->_sql->getData($this->_sql->getPointer() + 3, false);
|
$commentCheck = $this->_sql->getData($this->_sql->getPointer() + 3, false);
|
||||||
if (substr($commentCheck, 0, 2) == '--' || substr($commentCheck, 0, 2) == '/*') {
|
if (substr($commentCheck, 0, 2) == '--' || substr($commentCheck, 0, 2) == '/*') {
|
||||||
$statement = 'Comment';
|
$queryType = 'Comment';
|
||||||
} else {
|
} else {
|
||||||
//$this->_sql->movePointerToNextCommand();
|
// get first "word" of query to get the kind we have to process
|
||||||
// get first "word" of query to extract the kind we have to process
|
|
||||||
$endOfFirstWord = $this->_sql->getPosition(' ', false);
|
$endOfFirstWord = $this->_sql->getPosition(' ', false);
|
||||||
$sqlQuery = $this->_sql->getData($endOfFirstWord, false);
|
$sqlQuery = $this->_sql->getData($endOfFirstWord, false);
|
||||||
$statement = strtolower($sqlQuery);
|
$queryType = strtolower($sqlQuery);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$foundStatement = $this->_parseStatement($this->_sql, ucfirst($statement));
|
$foundStatement = $this->_parseStatement($this->_sql, ucfirst($queryType));
|
||||||
} catch (Msd_Sql_Parser_Exception $e) {
|
} catch (Msd_Sql_Parser_Exception $e) {
|
||||||
|
$this->_sql->setError($e->getMessage());
|
||||||
// stop parsing by setting pointer to the end
|
// stop parsing by setting pointer to the end
|
||||||
$this->_sql->setPointer($this->_sql->getLength());
|
$this->_sql->setPointer($this->_sql->getLength() + 1);
|
||||||
}
|
|
||||||
if ($this->_debug) {
|
|
||||||
$this->_debugOutput .= '<br />Extracted statement: '.$foundStatement;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($foundStatement > '') {
|
if ($foundStatement > '') {
|
||||||
$this->_parsedStatements[] = $foundStatement;
|
$this->_parsedStatements[] = $foundStatement;
|
||||||
$statementCounter++;
|
|
||||||
}
|
|
||||||
// increment query type counter
|
// increment query type counter
|
||||||
if (!isset($this->_parsingSummary[$statement])) {
|
if (!isset($this->_parsingSummary[$queryType])) {
|
||||||
$this->_parsingSummary[$statement] = 0;
|
$this->_parsingSummary[$queryType] = 0;
|
||||||
|
}
|
||||||
|
$this->_parsingSummary[$queryType]++;
|
||||||
}
|
}
|
||||||
$this->_parsingSummary[$statement]++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,7 +116,7 @@ class Msd_Sql_Parser implements Iterator
|
||||||
{
|
{
|
||||||
$statementPath = '/Msd/Sql/Parser/Statement/' . $statement;
|
$statementPath = '/Msd/Sql/Parser/Statement/' . $statement;
|
||||||
if (!file_exists(LIBRARY_PATH . $statementPath . '.php')) {
|
if (!file_exists(LIBRARY_PATH . $statementPath . '.php')) {
|
||||||
throw new Msd_Sql_Parser_Exception("Can't find statement class for statement: '" . $statement ."'");
|
throw new Msd_Sql_Parser_Exception("Unknown statement: '" . $statement . "'");
|
||||||
}
|
}
|
||||||
$statementClass = 'Msd_Sql_Parser_Statement_' . $statement;
|
$statementClass = 'Msd_Sql_Parser_Statement_' . $statement;
|
||||||
$parserObject = new $statementClass();
|
$parserObject = new $statementClass();
|
||||||
|
|
Laden …
In neuem Issue referenzieren