Passed
Push — master ( 9dbd27...a8663d )
by
unknown
13:44
created

Connection::lastInsertId()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 7
c 0
b 0
f 0
dl 0
loc 14
rs 10
cc 3
nop 1
nc 3
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the TYPO3 CMS project.
7
 *
8
 * It is free software; you can redistribute it and/or modify it under
9
 * the terms of the GNU General Public License, either version 2
10
 * of the License, or any later version.
11
 *
12
 * For the full copyright and license information, please read the
13
 * LICENSE.txt file that was distributed with this source code.
14
 *
15
 * The TYPO3 project - inspiring people to share!
16
 */
17
18
namespace TYPO3\CMS\Core\Database\Driver\PDOSqlsrv;
19
20
use Doctrine\DBAL\Driver\Result;
21
use PDO;
22
23
/**
24
 * This is a full "clone" of the class of package doctrine/dbal. Scope is to use the PDOConnection of TYPO3.
25
 * All private methods have to be checked on every release of doctrine/dbal.
26
 */
27
class Connection extends \Doctrine\DBAL\Driver\PDO\Connection
28
{
29
    /**
30
     * @internal The connection can be only instantiated by its driver.
31
     *
32
     * {@inheritdoc}
33
     */
34
    public function __construct($dsn, $user = null, $password = null, ?array $options = null)
35
    {
36
        parent::__construct($dsn, $user, $password, $options);
37
        $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [Statement::class, []]);
38
    }
39
40
    /**
41
     * {@inheritDoc}
42
     */
43
    public function lastInsertId($name = null)
44
    {
45
        if ($name === null) {
46
            return parent::lastInsertId($name);
47
        }
48
49
        $stmt = $this->prepare('SELECT CONVERT(VARCHAR(MAX), current_value) FROM sys.sequences WHERE name = ?');
50
        $stmt->execute([$name]);
51
52
        if ($stmt instanceof Result) {
53
            return $stmt->fetchOne();
0 ignored issues
show
Bug Best Practice introduced by
The expression return $stmt->fetchOne() also could return the type false which is incompatible with the return type mandated by Doctrine\DBAL\Driver\Connection::lastInsertId() of string.
Loading history...
54
        }
55
56
        return $stmt->fetchColumn();
57
    }
58
}
59