4ce08bf58f
Added "Traversable" implementation to access the parsed MySQL statements with "foreach". Setted SVN keywords. Fixed DocBlocks.
30 Zeilen
Kein EOL
581 B
PHP
30 Zeilen
Kein EOL
581 B
PHP
<?php
|
|
/**
|
|
* This file is part of MySQLDumper released under the GNU/GPL 2 license
|
|
* http://www.mysqldumper.net
|
|
*
|
|
* @package MySQLDumper
|
|
* @subpackage SQL-Browser
|
|
* @version SVN: $Rev$
|
|
* @author $Author$
|
|
*/
|
|
|
|
/**
|
|
* Interface definition for MySQL statement parsers.
|
|
*
|
|
* @package MySQLDumper
|
|
* @subpackage SQL-Browser
|
|
*/
|
|
interface Msd_Sql_Parser_Interface
|
|
{
|
|
/**
|
|
* Parse the statement.
|
|
*
|
|
* @abstract
|
|
*
|
|
* @param string $statement MySQL statement.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function parse($statement);
|
|
} |