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


PHP Column::getName方法代碼示例

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


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

示例1: getColumnCommentSqlDefinition

 /**
  * Gets the PostgreSQL Column Comment Defininition for a column object.
  *
  * @param Column $column Column
  * @param string $tableName Table name
  * @return string
  */
 protected function getColumnCommentSqlDefinition(Column $column, $tableName)
 {
     // passing 'null' is to remove column comment
     $comment = strcasecmp($column->getComment(), 'NULL') !== 0 ? $this->getConnection()->quote($column->getComment()) : 'NULL';
     return sprintf('COMMENT ON COLUMN %s.%s IS %s;', $tableName, $column->getName(), $comment);
 }
開發者ID:jaambageek,項目名稱:cakeboot-template,代碼行數:13,代碼來源:PostgresAdapter.php

示例2: changeColumn

 /**
  * {@inheritdoc}
  */
 public function changeColumn($tableName, $columnName, Column $newColumn)
 {
     $this->startCommandTimer();
     $this->writeCommand('changeColumn', array($tableName, $columnName, $newColumn->getType()));
     $columns = $this->getColumns($tableName);
     $changeDefault = $newColumn->getDefault() !== $columns[$columnName]->getDefault() || $newColumn->getType() !== $columns[$columnName]->getType();
     if ($columnName !== $newColumn->getName()) {
         $this->renameColumn($tableName, $columnName, $newColumn->getName());
     }
     if ($changeDefault) {
         $this->dropDefaultConstraint($tableName, $newColumn->getName());
     }
     $this->execute(sprintf('ALTER TABLE %s ALTER COLUMN %s %s', $this->quoteTableName($tableName), $this->quoteColumnName($newColumn->getName()), $this->getColumnSqlDefinition($newColumn, false)));
     // change column comment if needed
     if ($newColumn->getComment()) {
         $sql = $this->getColumnCommentSqlDefinition($newColumn, $tableName);
         $this->execute($sql);
     }
     if ($changeDefault) {
         $this->changeDefault($tableName, $newColumn);
     }
     $this->endCommandTimer();
 }
開發者ID:lhas,項目名稱:pep,代碼行數:26,代碼來源:SqlServerAdapter.php

示例3: changeColumn

 /**
  * {@inheritdoc}
  */
 public function changeColumn($tableName, $columnName, Column $newColumn)
 {
     $this->startCommandTimer();
     $this->writeCommand('changeColumn', array($tableName, $columnName, $newColumn->getType()));
     $after = $newColumn->getAfter() ? ' AFTER ' . $this->quoteColumnName($newColumn->getAfter()) : '';
     $this->execute(sprintf('ALTER TABLE %s CHANGE %s %s %s%s', $this->quoteTableName($tableName), $this->quoteColumnName($columnName), $this->quoteColumnName($newColumn->getName()), $this->getColumnSqlDefinition($newColumn), $after));
     $this->endCommandTimer();
 }
開發者ID:parkerj,項目名稱:eduTrac-SIS,代碼行數:11,代碼來源:MysqlAdapter.php

示例4: addColumn

 /**
  * {@inheritdoc}
  */
 public function addColumn(Table $table, Column $column)
 {
     $this->startCommandTimer();
     $this->writeCommand('addColumn', array($table->getName(), $column->getName(), $column->getType()));
     $sql = sprintf('ALTER TABLE %s ADD %s %s', $this->quoteTableName($table->getName()), $this->quoteColumnName($column->getName()), $this->getColumnSqlDefinition($column));
     $this->execute($sql);
     $this->endCommandTimer();
 }
開發者ID:xiaoguizhidao,項目名稱:autotech_design,代碼行數:11,代碼來源:PostgresAdapter.php

示例5: changeColumn

 /**
  * {@inheritdoc}
  */
 public function changeColumn($tableName, $columnName, Column $newColumn)
 {
     // TODO: DRY this up....
     $this->startCommandTimer();
     $this->writeCommand('changeColumn', array($tableName, $columnName, $newColumn->getType()));
     $tmpTableName = 'tmp_' . $tableName;
     $rows = $this->fetchAll('select * from sqlite_master where `type` = \'table\'');
     $sql = '';
     foreach ($rows as $table) {
         if ($table['tbl_name'] == $tableName) {
             $sql = $table['sql'];
         }
     }
     $columns = $this->fetchAll(sprintf('pragma table_info(%s)', $this->quoteTableName($tableName)));
     $selectColumns = array();
     $writeColumns = array();
     foreach ($columns as $column) {
         $selectName = $column['name'];
         $writeName = $selectName == $columnName ? $newColumn->getName() : $selectName;
         $selectColumns[] = $this->quoteColumnName($selectName);
         $writeColumns[] = $this->quoteColumnName($writeName);
     }
     if (!in_array($this->quoteColumnName($columnName), $selectColumns)) {
         throw new \InvalidArgumentException(sprintf('The specified column doesn\'t exist: ' . $columnName));
     }
     $this->execute(sprintf('ALTER TABLE %s RENAME TO %s', $tableName, $tmpTableName));
     $val = end($columns);
     $replacement = $val['name'] === $columnName ? "%s %s" : "%s %s,";
     $sql = preg_replace(sprintf("/%s[^,]*[^\\)]/", $this->quoteColumnName($columnName)), sprintf($replacement, $this->quoteColumnName($newColumn->getName()), $this->getColumnSqlDefinition($newColumn)), $sql);
     $this->execute($sql);
     $sql = sprintf('INSERT INTO %s(%s) SELECT %s FROM %s', $tableName, implode(', ', $writeColumns), implode(', ', $selectColumns), $tmpTableName);
     $this->execute($sql);
     $this->execute(sprintf('DROP TABLE %s', $this->quoteTableName($tmpTableName)));
     $this->endCommandTimer();
 }
開發者ID:elliotwms,項目名稱:phinx,代碼行數:38,代碼來源:SQLiteAdapter.php

示例6: getColumnSqlDefinition

 /**
  * Gets the SQLite Column Definition for a Column object.
  *
  * @param Column $column Column
  * @return string
  */
 protected function getColumnSqlDefinition(Column $column)
 {
     $sqlType = $this->getSqlType($column->getType());
     $def = '';
     $def .= strtoupper($sqlType['name']);
     if ($column->getPrecision() && $column->getScale()) {
         $def .= '(' . $column->getPrecision() . ',' . $column->getScale() . ')';
     }
     $limitable = in_array(strtoupper($sqlType['name']), $this->definitionsWithLimits);
     if (($column->getLimit() || isset($sqlType['limit'])) && $limitable) {
         $def .= '(' . ($column->getLimit() ? $column->getLimit() : $sqlType['limit']) . ')';
     }
     if (($values = $column->getValues()) && is_array($values)) {
         $def .= " CHECK({$column->getName()} IN ('" . implode("', '", $values) . "'))";
     }
     $default = $column->getDefault();
     $def .= $column->isNull() || is_null($default) ? ' NULL' : ' NOT NULL';
     $def .= $this->getDefaultValueDefinition($default);
     $def .= $column->isIdentity() ? ' PRIMARY KEY AUTOINCREMENT' : '';
     if ($column->getUpdate()) {
         $def .= ' ON UPDATE ' . $column->getUpdate();
     }
     $def .= $this->getCommentDefinition($column);
     return $def;
 }
開發者ID:joeymetal,項目名稱:restful-sdti,代碼行數:31,代碼來源:SQLiteAdapter.php

示例7: getName

 /**
  * Gets the column name.
  *
  * @return string
  */
 public function getName()
 {
     return $this->column->getName();
 }
開發者ID:nilopc-interesting-libs,項目名稱:sql-schema-builder,代碼行數:9,代碼來源:Column.php


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