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


PHP PDOStatement::setAttribute方法代碼示例

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


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

示例1: setAttribute

 public function setAttribute($attribute, $value)
 {
     if ($this->_statement instanceof \PDOStatement) {
         return $this->_statement->setAttribute($attribute, $value);
     }
     return false;
 }
開發者ID:rtshome,項目名稱:pgbabylon,代碼行數:7,代碼來源:PDOStatement.php

示例2: setAttribute

 /**
  * Set a statement attribute.
  *
  * @param string $key Attribute name.
  * @param mixed  $val Attribute value.
  * @return bool
  * @throws Zend_Db_Statement_Exception
  */
 public function setAttribute($key, $val)
 {
     try {
         return $this->_stmt->setAttribute($key, $val);
     } catch (PDOException $e) {
         require_once 'Zend/Db/Statement/Exception.php';
         throw new Zend_Db_Statement_Exception($e->getMessage());
     }
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:17,代碼來源:Pdo.php

示例3: setAttribute

 /**
  * @param int $attribute
  * @param mixed $value
  * @return bool
  * @throws \Compeek\PDOWrapper\NotConnectedException
  */
 public function setAttribute($attribute, $value)
 {
     $this->requireConnection();
     $result = $this->pdoStatement->setAttribute($attribute, $value);
     if ($result) {
         $this->pdoStatementAttributes[$attribute] = $value;
     }
     return $result;
 }
開發者ID:compeek,項目名稱:pdo-wrapper,代碼行數:15,代碼來源:PDOStatement.php

示例4: dataSeek

 /**
  * Moves internal resulset cursor to another position letting us to fetch a certain row
  *
  *<code>
  *  $result = $connection->query("SELECT * FROM robots ORDER BY name");
  *  $result->dataSeek(2); // Move to third row on result
  *  $row = $result->fetch(); // Fetch third row
  *</code>
  *
  * @param int $number
  * @return null|false
  */
 public function dataSeek($number)
 {
     /* Validation */
     if (is_int($number) === false) {
         return;
     }
     $this->_rowOffset = $number;
     if ($this->_pdoStatement->setAttribute(\PDO::ATTR_CURSOR, \PDO::CURSOR_SCROLL) === false) {
         return false;
     }
 }
開發者ID:aisuhua,項目名稱:phalcon-php,代碼行數:23,代碼來源:Pdo.php

示例5: setFetchSize

 public function setFetchSize($fetchSize)
 {
     $this->checkClosed();
     $this->stmt->setAttribute(\PDO::ATTR_PREFETCH, \blaze\lang\Integer::asNative($fetchSize));
 }
開發者ID:robo47,項目名稱:BlazeFramework,代碼行數:5,代碼來源:AbstractStatement.php

示例6: __construct

 /**
  * csvImporter constructor.
  * @param PDOStatement $dbh
  */
 public function __construct($dbh, $csvPath)
 {
     $dbh->setAttribute(\PDO::ATTR_EMULATE_PREPARES, true);
     $this->dbh = $dbh;
     $this->csvPath = $csvPath;
 }
開發者ID:urukalo,項目名稱:csvimporter,代碼行數:10,代碼來源:cvsImporter.php

示例7: setAttribute

 /**
  * @param int $attribute
  * @param mixed $value
  * @return bool
  */
 public function setAttribute($attribute, $value)
 {
     $archLog = array('method' => 'PDOStatement::setAttribute', 'input' => array('attribute' => $attribute, 'value' => $value), 'output' => $this->PDOStatement->setAttribute($attribute, $value), 'pointer' => $this->assignPointerString());
     return self::setLogReturnOutput($archLog);
 }
開發者ID:AdrianTrainorPHP,項目名稱:QueryScanner,代碼行數:10,代碼來源:ArchPDOStatement.php


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