コード例 #1
0
ファイル: Connection.php プロジェクト: OmondiKevin/ADT_MTRH
 /**
  * Gets the SchemaManager that can be used to inspect or change the
  * database schema through the connection.
  *
  * @return Doctrine\DBAL\Schema\SchemaManager
  */
 public function getSchemaManager()
 {
     if (!$this->_schemaManager) {
         $this->_schemaManager = $this->_driver->getSchemaManager($this);
     }
     return $this->_schemaManager;
 }