eef38cec0c
- 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
20 Zeilen
406 B
PHP
20 Zeilen
406 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$
|
|
*/
|
|
|
|
/**
|
|
* Exception class for all SQL-Parser exceptions.
|
|
*
|
|
* @package MySQLDumper
|
|
* @subpackage SQL-Browser
|
|
*/
|
|
class Msd_Sql_Parser_Exception extends Msd_Exception
|
|
{
|
|
}
|