You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: UPGRADE.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,28 @@
1
1
# Upgrade to 2.11
2
2
3
+
## Driver-level classes have been renamed
4
+
5
+
-`DriverException` => `Exception`
6
+
-`AbstractDriverException` => `AbstractException`
7
+
-`IBMDB2\DB2Driver` => `IBMDB2\Driver`
8
+
-`IBMDB2\DB2Connection` => `IBMDB2\Connection`
9
+
-`IBMDB2\DB2Statement` => `IBMDB2\Statement`
10
+
-`IBMDB2\DB2Exception` => `IBMDB2\Exception`
11
+
-`Mysqli\MysqliConnection` => `Mysqli\Connection`
12
+
-`Mysqli\MysqliStatement` => `Mysqli\Statement`
13
+
-`Mysqli\MysqliException` => `Mysqli\Exception`
14
+
-`OCI8\OCI8Connection` => `OCI8\Connection`
15
+
-`OCI8\OCI8Statement` => `OCI8\Statement`
16
+
-`OCI8\OCI8Exception` => `OCI8\Exception`
17
+
-`SQLSrv\SQLSrvConnection` => `SQLSrv\Connection`
18
+
-`SQLSrv\SQLSrvStatement` => `SQLSrv\Statement`
19
+
-`SQLSrv\SQLSrvException` => `SQLSrv\Exception`
20
+
-`PDOConnection` => `PDO\Connection`
21
+
-`PDOStatement` => `PDO\Statement`
22
+
-`PDOException` => `PDO\Exception`
23
+
24
+
The `Driver\AbstractException` class has been marked internal.
25
+
3
26
## `Connection::getParams()` has been marked internal
4
27
5
28
Consumers of the Connection class should not rely on connection parameters stored in the connection object. If needed, they should be obtained from a different source, e.g. application configuration.
0 commit comments