Documentation is available at DeleteQuery.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: DeleteQuery.interface.php,v 1.7 2007/09/05 21:38:59 adamfranco Exp $
- */
- require_once("Query.abstract.php");
- /**
- * A DeleteQuery interface provides the tools to build an SQL DELETE query.
- *
- *
- * @package harmoni.dbc
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: DeleteQuery.interface.php,v 1.7 2007/09/05 21:38:59 adamfranco Exp $
- */
- interface DeleteQueryInterface
- extends Query
- {
- /**
- * Sets the table to delete from.
- * @param string $table The table to delete from.
- * @access public
- */
- function setTable($table) ;
- /**
- /**
- * *Deprecated* Specifies the condition in the WHERE clause.
- *
- * The query will execute only on rows that fulfil the condition. If this method
- * is never called, then the WHERE clause will not be included.
- * @param string The WHERE clause condition.
- * @access public
- * @deprecated July 09, 2003 - Use addWhere() instead.
- */
- function setWhere($condition) ;
- /**
- /**
- * Adds a new condition in the WHERE clause.
- *
- * The query will execute only on rows that fulfil the condition. If this method
- * is never called, then the WHERE clause will not be included.
- * @param string condition The WHERE clause condition to add.
- * @param integer logicalOperation The logical operation to use to connect
- * this WHERE condition with the previous WHERE conditions. Allowed values:
- * <code>_AND</code> and <code>_OR</code>.
- * @access public
- * @return void
- */
- function addWhere($condition, $logicalOperation = _AND) ;
- ?>
Documentation generated on Wed, 19 Sep 2007 10:22:42 -0400 by phpDocumentor 1.3.0RC3