Exemplo n.º 1
0
 /**
  * @return mixed
  */
 public function getLastGeneratedValue($name = null)
 {
     return $this->connection->getLastGeneratedValue($name);
 }
Exemplo n.º 2
0
 /**
  * @return mixed
  */
 public function getLastGeneratedValue()
 {
     $this->connection->getLastGeneratedValue();
 }
Exemplo n.º 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();
 }