1
0
mirror of synced 2024-12-14 23:26:04 +03:00

constraint exporting added

This commit is contained in:
zYne 2007-01-25 11:37:46 +00:00
parent c88d183e1f
commit fb26e0a19e

View File

@ -143,6 +143,8 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
* -- charset character set * -- charset character set
* *
* -- collation * -- collation
*
* -- index the index definitions of this table
*/ */
protected $options = array('name' => null, protected $options = array('name' => null,
'tableName' => null, 'tableName' => null,
@ -151,7 +153,8 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
'enumMap' => array(), 'enumMap' => array(),
'engine' => null, 'engine' => null,
'charset' => null, 'charset' => null,
'collation' => null 'collation' => null,
'index' => array(),
); );
/** /**
@ -307,7 +310,8 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
* @return boolean whether or not the export operation was successful * @return boolean whether or not the export operation was successful
* false if table already existed in the database * false if table already existed in the database
*/ */
public function export() { public function export()
{
if ( ! Doctrine::isValidClassname($this->options['declaringClass']->getName())) { if ( ! Doctrine::isValidClassname($this->options['declaringClass']->getName())) {
throw new Doctrine_Table_Exception('Class name not valid.'); throw new Doctrine_Table_Exception('Class name not valid.');
} }
@ -349,6 +353,28 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
} }
} }
} }
/**
* exportConstraints
* exports the constraints of this table into database based on option definitions
*
* @throws Doctrine_Connection_Exception if something went wrong on db level
* @return void
*/
public function exportConstraints()
{
try {
$this->conn->beginTransaction();
foreach ($this->options['index'] as $index => $definition) {
$this->conn->export->createIndex($this->options['tableName'], $index, $definition);
}
$this->conn->commit();
} catch(Doctrine_Connection_Exception $e) {
$this->conn->rollback();
throw $e;
}
}
/** /**
* createQuery * createQuery
* creates a new Doctrine_Query object and adds the component name * creates a new Doctrine_Query object and adds the component name
@ -378,8 +404,9 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
break; break;
case 'enumMap': case 'enumMap':
case 'inheritanceMap': case 'inheritanceMap':
case 'index':
if ( ! is_array($value)) { if ( ! is_array($value)) {
throw new Doctrine_Table_Exception($name.' should be an array.'); throw new Doctrine_Table_Exception($name . ' should be an array.');
} }
break; break;
} }