Source for file mysql.daobuilder.php

Documentation is available at mysql.daobuilder.php

  1. <?php
  2. /**
  3. @package    jelix
  4. @subpackage db_driver
  5. @author     Laurent Jouanneau
  6. @contributor
  7. @copyright  2007 Laurent Jouanneau
  8. @link      http://www.jelix.org
  9. @licence  http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
  10. */
  11.  
  12. /**
  13.  * driver for jDaoCompiler
  14.  * @package    jelix
  15.  * @subpackage db_driver
  16.  */
  17. class mysqlDaoBuilder extends jDaoGenerator {
  18.  
  19.     protected $propertiesListForInsert = 'PrimaryFieldsExcludeAutoIncrement';
  20.  
  21.     function __construct($factoryClassName$recordClassName$daoDefinition){
  22.         parent::__construct($factoryClassName$recordClassName$daoDefinition);
  23.  
  24.     }
  25.  
  26.     protected function _encloseName($name){
  27.         return '`'.$name.'`';
  28.     }
  29.  
  30. }

Documentation generated on Thu, 22 Mar 2012 22:17:51 +0100 by phpDocumentor 1.4.3