diff --git a/ChangeLog b/ChangeLog index 32b10383e..d0d198ae9 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ $Source$ 2002-07-24 Robin Johnson * libraries/string.lib.php3: optimizations (thanks Loïc) + * libraries/sqlparser.lib.php3: SQL Parser merging (in progress) 2002-07-24 Loïc Chapeaux * libraries/string.lib.php3: Function documentation diff --git a/libraries/sqlparser.lib.php3 b/libraries/sqlparser.lib.php3 new file mode 100644 index 000000000..79346510c --- /dev/null +++ b/libraries/sqlparser.lib.php3 @@ -0,0 +1,31 @@ + + * 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__