32 lines
457 B
PHP
32 lines
457 B
PHP
<?php
|
|
/* $Id$ */
|
|
|
|
/** SQL Parser Functions for phpMyAdmin
|
|
*
|
|
* Copyright 2002 Robin Johnson <robbat2@users.sourceforge.net>
|
|
* http://www.orbis-terrarum.net/?l=people.robbat2
|
|
*
|
|
* These functions define an SQL parser system, capable of understanding and
|
|
* extracting data from a MySQL type SQL query.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
|
define('PMA_SQP_LIB_INCLUDED', 1);
|
|
|
|
} // $__PMA_SQP_LIB__
|