Source for file GenericSQLQuery.interface.php

Documentation is available at GenericSQLQuery.interface.php

  1. <?php
  2. /**
  3. * @package harmoni.dbc
  4. *
  5. * @copyright Copyright &copy; 2005, Middlebury College
  6. * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
  7. *
  8. * @version $Id: GenericSQLQuery.interface.php,v 1.5 2007/09/05 21:38:59 adamfranco Exp $
  9. */
  10. require_once("Query.interface.php");
  11.  
  12.  
  13. /**
  14. * A GenericSQLQuery provides a way to specify the SQL string manually. Use this
  15. * query type to execute queries not available through the other Query
  16. * objects (for example, data-definition queries).
  17. *
  18. *
  19. * @package harmoni.dbc
  20. *
  21. * @copyright Copyright &copy; 2005, Middlebury College
  22. * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
  23. *
  24. * @version $Id: GenericSQLQuery.interface.php,v 1.5 2007/09/05 21:38:59 adamfranco Exp $
  25. */
  26.  
  27. interface GenericSQLQueryInterface
  28. extends Query
  29. {
  30.  
  31.  
  32. /**
  33. * Adds one SQL string to this query.
  34. * @access public
  35. * @param string sql One SQL string,
  36. * @return void
  37. */
  38. function addSQLQuery($sql) ;
  39.  
  40. ?>

Documentation generated on Wed, 19 Sep 2007 10:23:22 -0400 by phpDocumentor 1.3.0RC3