当前位置: 首页>>代码示例>>PHP>>正文


PHP AbstractPlatform::appendLockHint方法代码示例

本文整理汇总了PHP中Doctrine\DBAL\Platforms\AbstractPlatform::appendLockHint方法的典型用法代码示例。如果您正苦于以下问题:PHP AbstractPlatform::appendLockHint方法的具体用法?PHP AbstractPlatform::appendLockHint怎么用?PHP AbstractPlatform::appendLockHint使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Doctrine\DBAL\Platforms\AbstractPlatform的用法示例。


在下文中一共展示了AbstractPlatform::appendLockHint方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: lock

 /**
  * Lock all rows of this entity matching the given criteria with the specified pessimistic lock mode
  *
  * @param array $criteria
  * @param int $lockMode
  * @return void
  */
 public function lock(array $criteria, $lockMode)
 {
     $conditionSql = $this->_getSelectConditionSQL($criteria);
     if ($lockMode == LockMode::PESSIMISTIC_READ) {
         $lockSql = $this->_platform->getReadLockSql();
     } else {
         if ($lockMode == LockMode::PESSIMISTIC_WRITE) {
             $lockSql = $this->_platform->getWriteLockSql();
         }
     }
     $sql = 'SELECT 1 ' . $this->_platform->appendLockHint($this->getLockTablesSql(), $lockMode) . ($conditionSql ? ' WHERE ' . $conditionSql : '') . ' ' . $lockSql;
     list($params, $types) = $this->expandParameters($criteria);
     $stmt = $this->_conn->executeQuery($sql, $params, $types);
 }
开发者ID:manish436,项目名称:zform,代码行数:21,代码来源:BasicEntityPersister.php

示例2: walkSubselectFromClause

 /**
  * {@inheritdoc}
  */
 public function walkSubselectFromClause($subselectFromClause)
 {
     $identificationVarDecls = $subselectFromClause->identificationVariableDeclarations;
     $sqlParts = array();
     foreach ($identificationVarDecls as $subselectIdVarDecl) {
         $sql = $this->walkRangeVariableDeclaration($subselectIdVarDecl->rangeVariableDeclaration);
         foreach ($subselectIdVarDecl->joins as $join) {
             $sql .= $this->walkJoin($join);
         }
         $sqlParts[] = $this->platform->appendLockHint($sql, $this->query->getHint(Query::HINT_LOCK_MODE));
     }
     return ' FROM ' . implode(', ', $sqlParts);
 }
开发者ID:nemekzg,项目名称:doctrine2,代码行数:16,代码来源:SqlWalker.php

示例3: lock

    /**
     * Locks all rows of this entity matching the given criteria with the specified pessimistic lock mode.
     *
     * @param array $criteria
     * @param int   $lockMode
     *
     * @return void
     */
    public function lock(array $criteria, $lockMode)
    {
        $lockSql      = '';
        $conditionSql = $this->getSelectConditionSQL($criteria);

        switch ($lockMode) {
            case LockMode::PESSIMISTIC_READ:
                $lockSql = $this->platform->getReadLockSql();

                break;
            case LockMode::PESSIMISTIC_WRITE:

                $lockSql = $this->platform->getWriteLockSql();
                break;
        }

        $lock  = $this->platform->appendLockHint($this->getLockTablesSql(), $lockMode);
        $where = ($conditionSql ? ' WHERE ' . $conditionSql : '') . ' ';
        $sql = 'SELECT 1 '
             . $lock
             . $where
             . $lockSql;

        list($params, $types) = $this->expandParameters($criteria);

        $this->conn->executeQuery($sql, $params, $types);
    }
开发者ID:nattaphat,项目名称:hgis,代码行数:35,代码来源:BasicEntityPersister.php

示例4: getLockTablesSql

 /**
  * Gets the FROM and optionally JOIN conditions to lock the entity managed by this persister.
  *
  * @param integer $lockMode One of the Doctrine\DBAL\LockMode::* constants.
  *
  * @return string
  */
 protected function getLockTablesSql($lockMode)
 {
     return $this->platform->appendLockHint('FROM ' . $this->quoteStrategy->getTableName($this->class, $this->platform) . ' ' . $this->getSQLTableAlias($this->class->name), $lockMode);
 }
开发者ID:BusinessCookies,项目名称:CoffeeMachineProject,代码行数:11,代码来源:BasicEntityPersister.php

示例5: walkRangeVariableDeclaration

 /**
  * Walks down a RangeVariableDeclaration AST node, thereby generating the appropriate SQL.
  *
  * @param AST\RangeVariableDeclaration $rangeVariableDeclaration
  *
  * @return string
  */
 public function walkRangeVariableDeclaration($rangeVariableDeclaration)
 {
     $class = $this->em->getClassMetadata($rangeVariableDeclaration->abstractSchemaName);
     $dqlAlias = $rangeVariableDeclaration->aliasIdentificationVariable;
     if ($rangeVariableDeclaration->isRoot) {
         $this->rootAliases[] = $dqlAlias;
     }
     $sql = $this->platform->appendLockHint($this->quoteStrategy->getTableName($class, $this->platform) . ' ' . $this->getSQLTableAlias($class->getTableName(), $dqlAlias), $this->query->getHint(Query::HINT_LOCK_MODE));
     if ($class->isInheritanceTypeJoined()) {
         $sql .= $this->_generateClassTableInheritanceJoins($class, $dqlAlias);
     }
     return $sql;
 }
开发者ID:BozzaCoon,项目名称:SPHERE-Framework,代码行数:20,代码来源:SqlWalker.php


注:本文中的Doctrine\DBAL\Platforms\AbstractPlatform::appendLockHint方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。