Documentation is available at SQLGenerator.interface.php
- <?php
- /**
- * @package harmoni.dbc
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: SQLGenerator.interface.php,v 1.3 2005/04/07 16:33:23 adamfranco Exp $
- */
- /**
- * A SQLGeneratorInterface interface is the parent of all SQLGenerator objects.
- * A SQLGeneratorInterface interface declares only one method, namely
- * generateSQLQuery(), which takes a query object as a parameter. The method
- * returns the SQL string representation of that query object - thus, a SQLGenerator.
- * @version $Id: SQLGenerator.interface.php,v 1.3 2005/04/07 16:33:23 adamfranco Exp $
- *
- * @package harmoni.dbc
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: SQLGenerator.interface.php,v 1.3 2005/04/07 16:33:23 adamfranco Exp $
- */
- class SQLGeneratorInterface {
- /**
- * Returns a string representing the SQL query corresonding to the specified Query object.
- * @param object QueryInterface $query The object from which to generate the SQL string.
- * @return string A string representing the SQL query corresonding to this Query object.
- * @static
- * @access public
- */
- function generateSQLQuery($query) { die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class."); }
- }
- ?>
Documentation generated on Wed, 19 Sep 2007 10:26:40 -0400 by phpDocumentor 1.3.0RC3