예제 #1
0
파일: Pdo.php 프로젝트: idwsdta/INIT-frame
 /**
  * @return mixed
  */
 public function getLastGeneratedValue($name = null)
 {
     return $this->connection->getLastGeneratedValue($name);
 }
예제 #2
0
파일: Pdo.php 프로젝트: necrogami/zf2
 /**
  * @return mixed
  */
 public function getLastGeneratedValue()
 {
     $this->connection->getLastGeneratedValue();
 }
예제 #3
0
 /**
  * @covers Zend\Db\Adapter\Driver\Pdo\Connection::getLastGeneratedValue
  */
 public function testGetLastGeneratedValue()
 {
     $this->markTestIncomplete('Need to create a temporary sequence.');
     $connection = new Connection($this->variables);
     $connection->getLastGeneratedValue();
 }