1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<?php
namespace Doctrine\DBAL\Tests\Functional\Driver\OCI8;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Tests\TestUtil;
/** @requires extension oci8 */
class ConnectionTest extends FunctionalTestCase
{
protected function setUp(): void
{
if (TestUtil::isDriverOneOf('oci8')) {
return;
}
self::markTestSkipped('This test requires the oci8 driver.');
}
public function testLastInsertIdAcceptsFqn(): void
{
$table = new Table('DBAL2595');
$table->addColumn('id', 'integer', ['autoincrement' => true]);
$table->addColumn('foo', 'integer');
$this->dropAndCreateTable($table);
$this->connection->executeStatement('INSERT INTO DBAL2595 (foo) VALUES (1)');
$schema = $this->connection->getDatabase();
$platform = $this->connection->getDatabasePlatform();
$sequence = $platform->getIdentitySequenceName($schema . '.DBAL2595', 'id');
self::assertSame(1, $this->connection->lastInsertId($sequence));
}
}
|