當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ForeignKeyConstraint::hasOption方法代碼示例

本文整理匯總了PHP中Doctrine\DBAL\Schema\ForeignKeyConstraint::hasOption方法的典型用法代碼示例。如果您正苦於以下問題:PHP ForeignKeyConstraint::hasOption方法的具體用法?PHP ForeignKeyConstraint::hasOption怎麽用?PHP ForeignKeyConstraint::hasOption使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine\DBAL\Schema\ForeignKeyConstraint的用法示例。


在下文中一共展示了ForeignKeyConstraint::hasOption方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getForeignKeyBaseDeclarationSQL

 /**
  * {@inheritdoc}
  */
 public function getForeignKeyBaseDeclarationSQL(ForeignKeyConstraint $foreignKey)
 {
     $sql = '';
     $foreignKeyName = $foreignKey->getName();
     $localColumns = $foreignKey->getQuotedLocalColumns($this);
     $foreignColumns = $foreignKey->getQuotedForeignColumns($this);
     $foreignTableName = $foreignKey->getQuotedForeignTableName($this);
     if (!empty($foreignKeyName)) {
         $sql .= 'CONSTRAINT ' . $foreignKey->getQuotedName($this) . ' ';
     }
     if (empty($localColumns)) {
         throw new \InvalidArgumentException("Incomplete definition. 'local' required.");
     }
     if (empty($foreignColumns)) {
         throw new \InvalidArgumentException("Incomplete definition. 'foreign' required.");
     }
     if (empty($foreignTableName)) {
         throw new \InvalidArgumentException("Incomplete definition. 'foreignTable' required.");
     }
     if ($foreignKey->hasOption('notnull') && (bool) $foreignKey->getOption('notnull')) {
         $sql .= 'NOT NULL ';
     }
     return $sql . 'FOREIGN KEY (' . $this->getIndexFieldDeclarationListSQL($localColumns) . ') ' . 'REFERENCES ' . $foreignKey->getQuotedForeignTableName($this) . ' (' . $this->getIndexFieldDeclarationListSQL($foreignColumns) . ')';
 }
開發者ID:Kevin-ZK,項目名稱:vaneDisk,代碼行數:27,代碼來源:SQLAnywherePlatform.php

示例2: getAdvancedForeignKeyOptionsSQL

 /**
  * {@inheritDoc}
  */
 public function getAdvancedForeignKeyOptionsSQL(\Doctrine\DBAL\Schema\ForeignKeyConstraint $foreignKey)
 {
     $query = '';
     if ($foreignKey->hasOption('match')) {
         $query .= ' MATCH ' . $foreignKey->getOption('match');
     }
     $query .= parent::getAdvancedForeignKeyOptionsSQL($foreignKey);
     return $query;
 }
開發者ID:tamboer,項目名稱:LaravelOctober,代碼行數:12,代碼來源:MySqlPlatform.php

示例3: getAdvancedForeignKeyOptionsSQL

 /**
  * Return the FOREIGN KEY query section dealing with non-standard options
  * as MATCH, INITIALLY DEFERRED, ON UPDATE, ...
  *
  * @param ForeignKeyConstraint $foreignKey     foreign key definition
  * @return string
  */
 public function getAdvancedForeignKeyOptionsSQL(ForeignKeyConstraint $foreignKey)
 {
     $query = '';
     if ($this->supportsForeignKeyOnUpdate() && $foreignKey->hasOption('onUpdate')) {
         $query .= ' ON UPDATE ' . $this->getForeignKeyReferentialActionSQL($foreignKey->getOption('onUpdate'));
     }
     if ($foreignKey->hasOption('onDelete')) {
         $query .= ' ON DELETE ' . $this->getForeignKeyReferentialActionSQL($foreignKey->getOption('onDelete'));
     }
     return $query;
 }
開發者ID:pollux1er,項目名稱:dlawebdev2,代碼行數:18,代碼來源:AbstractPlatform.php

示例4: getAdvancedForeignKeyOptionsSQL

 /**
  * {@inheritDoc}
  */
 public function getAdvancedForeignKeyOptionsSQL(\Doctrine\DBAL\Schema\ForeignKeyConstraint $foreignKey)
 {
     $query = '';
     if ($foreignKey->hasOption('match')) {
         $query .= ' MATCH ' . $foreignKey->getOption('match');
     }
     $query .= parent::getAdvancedForeignKeyOptionsSQL($foreignKey);
     if ($foreignKey->hasOption('deferrable') && $foreignKey->getOption('deferrable') !== false) {
         $query .= ' DEFERRABLE';
     } else {
         $query .= ' NOT DEFERRABLE';
     }
     if ($foreignKey->hasOption('feferred') && $foreignKey->getOption('feferred') !== false || $foreignKey->hasOption('deferred') && $foreignKey->getOption('deferred') !== false) {
         $query .= ' INITIALLY DEFERRED';
     } else {
         $query .= ' INITIALLY IMMEDIATE';
     }
     return $query;
 }
開發者ID:cuppyzh,項目名稱:go_laundry,代碼行數:22,代碼來源:PostgreSqlPlatform.php

示例5: getAdvancedForeignKeyOptionsSQL

 /**
  * {@inheritdoc}
  */
 public function getAdvancedForeignKeyOptionsSQL(ForeignKeyConstraint $foreignKey)
 {
     $referentialAction = null;
     if ($foreignKey->hasOption('onDelete')) {
         $referentialAction = $this->getForeignKeyReferentialActionSQL($foreignKey->getOption('onDelete'));
     }
     return $referentialAction ? ' ON DELETE ' . $referentialAction : '';
 }
開發者ID:butonic,項目名稱:dbal,代碼行數:11,代碼來源:OraclePlatform.php


注:本文中的Doctrine\DBAL\Schema\ForeignKeyConstraint::hasOption方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。