1
0
Fork 0

Added new parser to SQL-Browser / SQL-Box

Removed require_once in parser classes
Added debug possibility to parser
Dieser Commit ist enthalten in:
DSB 2011-06-19 14:42:30 +00:00
Ursprung 50f5a5aa14
Commit e7bc0d0b0a
9 geänderte Dateien mit 84 neuen und 28 gelöschten Zeilen

Datei anzeigen

@ -9,13 +9,12 @@
* @author $Author$
*/
require_once "Msd/Sql/Parser/Interface.php";
/**
* Class to parse MySQL UNLOCK statements.
* This enables you to analyze and modify MySQL queries, which the user has entered.
*
* @package MySQLDumper
* @subpackage SQL-Browser
* @subpackage SQL-Parser
*/
class Msd_Sql_Parser_Statement_Unlock implements Msd_Sql_Parser_Interface
{
@ -28,6 +27,7 @@ class Msd_Sql_Parser_Statement_Unlock implements Msd_Sql_Parser_Interface
*/
public function parse($statement)
{
echo "$statement\n";
echo "UNLOCK: $statement\n";
return $statement;
}
}