Added basic structure of MySQL statement parsers.
Dieser Commit ist enthalten in:
Ursprung
a211f7b334
Commit
55aa7889e5
8 geänderte Dateien mit 291 neuen und 1 gelöschten Zeilen
30
library/Msd/Sql/Parser/Interface.php
Normale Datei
30
library/Msd/Sql/Parser/Interface.php
Normale Datei
|
|
@ -0,0 +1,30 @@
|
|||
<?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: 1227 $
|
||||
* @author $Author: DSB $
|
||||
*/
|
||||
|
||||
/**
|
||||
* Interface definition for MySQL statement parsers.
|
||||
*
|
||||
* @package MySQLDumper
|
||||
* @subpackage SQL-Browser
|
||||
*/
|
||||
interface Msd_Sql_Parser_Interface
|
||||
{
|
||||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @abstract
|
||||
*
|
||||
* @param string $statement MySQL INSERT statement.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function parse($statement);
|
||||
}
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren