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


PHP DboSource::lastAffected方法代码示例

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


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

示例1: testLastAffected

 /**
  * testLastAffected method
  *
  *
  * @return void
  */
 public function testLastAffected()
 {
     $this->Dbo->cacheSources = false;
     $tableName = 'tinyint_' . uniqid();
     $this->Dbo->rawQuery('CREATE TABLE ' . $this->Dbo->fullTableName($tableName) . ' (id int(11) AUTO_INCREMENT, bool tinyint(1), small_int tinyint(2), primary key(id));');
     $this->model = new CakeTestModel(array('name' => 'Tinyint', 'table' => $tableName, 'ds' => 'test'));
     $this->assertTrue((bool) $this->model->save(array('bool' => 5, 'small_int' => 5)));
     $this->assertEquals(1, $this->model->find('count'));
     $this->model->deleteAll(true);
     $result = $this->Dbo->lastAffected();
     $this->assertEquals(1, $result);
     $this->assertEquals(0, $this->model->find('count'));
     $this->Dbo->rawQuery('DROP TABLE ' . $this->Dbo->fullTableName($tableName));
 }
开发者ID:laiello,项目名称:double-l-bookmanagement,代码行数:20,代码来源:MysqlTest.php

示例2: lastAffected

 /**
  * Returns number of affected rows in previous database operation. If no previous operation exists,
  * this returns false.
  *
  * @param mixed $source
  * @return integer Number of affected rows
  */
 public function lastAffected($source = null)
 {
     $affected = parent::lastAffected();
     if ($affected === null && $this->_lastAffected !== false) {
         return $this->_lastAffected;
     }
     return $affected;
 }
开发者ID:alphp,项目名称:cakephp-2.x_oracle-driver,代码行数:15,代码来源:Oracle.php

示例3: lastAffected

 /**
  * Returns number of affected rows in previous database operation. If no previous operation exists,
  * this returns false.
  *
  * @param mixed $source Unused
  *
  * @return int Number of affected rows
  */
 public function lastAffected($source = NULL)
 {
     $affected = parent::lastAffected();
     if ($affected === NULL && $this->_lastAffected !== FALSE) {
         return $this->_lastAffected;
     }
     return $affected;
 }
开发者ID:mrbadao,项目名称:api-official,代码行数:16,代码来源:Sqlserver.php


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