1
0
Fork 0
MySQLDumper/library/Msd/Sql/Parser/Statement/Create.php
DSB eef38cec0c SQL-Parser:
- implemented a new sql-object that can be handed over to the statement parsing classes (Implemented only for select for now)
QA
Added library path constant to public/index.php
2011-06-19 21:26:17 +00:00

32 Zeilen
715 B
PHP

<?php
/**
* This file is part of MySQLDumper released under the GNU/GPL 2 license
* http://www.mysqldumper.net
*
* @package MySQLDumper
* @subpackage SQL-Parser
* @version SVN: $Rev$
* @author $Author$
*/
/**
* Class to parse MySQL CREATE statements.
* This enables you to analyze and modify MySQL queries, which the user has entered.
*
* @package MySQLDumper
* @subpackage SQL-Parser
*/
class Msd_Sql_Parser_Statement_Create implements Msd_Sql_Parser_Interface
{
/**
* Parse the statement.
*
* @param string $statement MySQL CREATE statement.
*
* @return void
*/
public function parse($statement)
{
return $statement;
}
}