Source for file DBE.interface.php

Documentation is available at DBE.interface.php

  1. <?php
  2.  
  3. require_once(HARMONI.'DBHandler/DBHandler.class.php');
  4.  
  5. /**
  6. * This is the common interface of all DBE (database engine) classes. A DBE
  7. * provides interface between an object's attribute values and their corresponding
  8. * physical location in a database. For example, suppose we have an Employee class
  9. * defined with its first name, last name, email, phone, etc. attributes. An
  10. * EmployeeDBE class would include the necessary methods to read/write those
  11. * attributes from/to a database.
  12. *
  13. * @package harmoni.utilities
  14. *
  15. * @copyright Copyright &copy; 2005, Middlebury College
  16. * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
  17. *
  18. * @version $Id: DBE.interface.php,v 1.4 2005/02/07 21:38:28 adamfranco Exp $
  19. */
  20. class DBE {
  21.  
  22. // there is not really any common funcionallity to DBE classes, and for this
  23. // reason the body of this interface is left empty.
  24.  
  25.  
  26.  
  27.  
  28.  
  29. }
  30.  
  31. ?>

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