2011-06-18 11:10:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This file is part of MySQLDumper released under the GNU/GPL 2 license
|
|
|
|
* http://www.mysqldumper.net
|
|
|
|
*
|
|
|
|
* @package MySQLDumper
|
2011-06-19 21:26:17 +00:00
|
|
|
* @subpackage SQL-Parser
|
2011-06-19 13:47:44 +00:00
|
|
|
* @version SVN: $Rev$
|
|
|
|
* @author $Author$
|
2011-06-18 11:10:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface definition for MySQL statement parsers.
|
|
|
|
*
|
|
|
|
* @package MySQLDumper
|
2011-06-19 21:26:17 +00:00
|
|
|
* @subpackage SQL-Parser
|
2011-06-18 11:10:40 +00:00
|
|
|
*/
|
|
|
|
interface Msd_Sql_Parser_Interface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Parse the statement.
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
*
|
2011-06-19 21:26:17 +00:00
|
|
|
* @param Msd_Sql_Object $sqlObject MySQL statement object.
|
2011-06-18 11:10:40 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-06-19 21:26:17 +00:00
|
|
|
public function parse(Msd_Sql_Object $sqlObject);
|
2011-06-18 11:10:40 +00:00
|
|
|
}
|