Source for file mysql.daobuilder.php
Documentation is available at mysql.daobuilder.php
- <?php
- /**
- * @package jelix
- * @subpackage db_driver
- * @author Laurent Jouanneau
- * @contributor
- * @copyright 2007 Laurent Jouanneau
- * @link http://www.jelix.org
- * @licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
- */
-
- /**
- * driver for jDaoCompiler
- * @package jelix
- * @subpackage db_driver
- */
- class mysqlDaoBuilder extends jDaoGenerator {
-
- protected $propertiesListForInsert = 'PrimaryFieldsExcludeAutoIncrement';
-
- function __construct($factoryClassName, $recordClassName, $daoDefinition){
- parent::__construct($factoryClassName, $recordClassName, $daoDefinition);
-
- }
-
- protected function _encloseName($name){
- return '`'.$name.'`';
- }
-
- }
- ?>
Documentation generated on Wed, 07 Sep 2011 13:48:22 +0200 by phpDocumentor 1.4.3