Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
db2e0f37
Commit
db2e0f37
authored
Dec 17, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drop pdo_ibm driver support
parent
c8518c1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
UPGRADE.md
UPGRADE.md
+11
-1
DriverManager.php
lib/Doctrine/DBAL/DriverManager.php
+0
-2
No files found.
UPGRADE.md
View file @
db2e0f37
# Upgrade to 2.5
No BC breaks yet.
## Support for pdo_ibm driver removed
The
``pdo_ibm``
driver is buggy and does not work well with Doctrine. Therefore it will no
longer be supported and has been removed from the
``Doctrine\DBAL\DriverManager``
drivers
map. It is highly encouraged to to use
`ibm_db2`
driver instead if you want to connect
to an IBM DB2 database as it is much more stable and secure.
If for some reason you have to utilize the
``pdo_ibm``
driver you can still use the
`driverClass`
connection parameter to explicitly specify the
``Doctrine\DBAL\Driver\PDOIbm\Driver``
class.
However be aware that you are doing this at your own risk and it will not be guaranteed that
Doctrine will work as expected.
# Upgrade to 2.4
...
...
lib/Doctrine/DBAL/DriverManager.php
View file @
db2e0f37
...
...
@@ -44,7 +44,6 @@ final class DriverManager
'pdo_oci'
=>
'Doctrine\DBAL\Driver\PDOOracle\Driver'
,
'oci8'
=>
'Doctrine\DBAL\Driver\OCI8\Driver'
,
'ibm_db2'
=>
'Doctrine\DBAL\Driver\IBMDB2\DB2Driver'
,
'pdo_ibm'
=>
'Doctrine\DBAL\Driver\PDOIbm\Driver'
,
'pdo_sqlsrv'
=>
'Doctrine\DBAL\Driver\PDOSqlsrv\Driver'
,
'mysqli'
=>
'Doctrine\DBAL\Driver\Mysqli\Driver'
,
'drizzle_pdo_mysql'
=>
'Doctrine\DBAL\Driver\DrizzlePDOMySql\Driver'
,
...
...
@@ -73,7 +72,6 @@ final class DriverManager
* pdo_pgsql
* pdo_oci (unstable)
* pdo_sqlsrv
* pdo_ibm (unstable)
* pdo_sqlsrv
* mysqli
* sqlanywhere
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment