File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -316,16 +316,21 @@ private function getDriver(): string
316
316
$ this ->driver = 'mysql ' ;
317
317
break ;
318
318
case $ driver instanceof \Doctrine \DBAL \Driver \PDOSqlite \Driver:
319
+ case $ driver instanceof \Doctrine \DBAL \Driver \PDO \SQLite \Driver:
319
320
$ this ->driver = 'sqlite ' ;
320
321
break ;
321
322
case $ driver instanceof \Doctrine \DBAL \Driver \PDOPgSql \Driver:
323
+ case $ driver instanceof \Doctrine \DBAL \Driver \PDO \PgSQL \Driver:
322
324
$ this ->driver = 'pgsql ' ;
323
325
break ;
324
326
case $ driver instanceof \Doctrine \DBAL \Driver \OCI8 \Driver:
325
327
case $ driver instanceof \Doctrine \DBAL \Driver \PDOOracle \Driver:
328
+ case $ driver instanceof \Doctrine \DBAL \Driver \PDO \OCI \Driver:
326
329
$ this ->driver = 'oci ' ;
327
330
break ;
328
331
case $ driver instanceof \Doctrine \DBAL \Driver \SQLSrv \Driver:
332
+ case $ driver instanceof \Doctrine \DBAL \Driver \PDOSqlsrv \Driver:
333
+ case $ driver instanceof \Doctrine \DBAL \Driver \PDO \SQLSrv \Driver:
329
334
$ this ->driver = 'sqlsrv ' ;
330
335
break ;
331
336
default :
You can’t perform that action at this time.
0 commit comments