Commit 9fcd78db authored by Johannes M. Schmitt's avatar Johannes M. Schmitt

added before/after example

parent 4cc70c17
...@@ -9,6 +9,19 @@ information such as the executed SQL statement, and any bound parameters. ...@@ -9,6 +9,19 @@ information such as the executed SQL statement, and any bound parameters.
If you want to retrieve the driver specific exception, you can retrieve it by calling the If you want to retrieve the driver specific exception, you can retrieve it by calling the
``getPrevious()`` method on DBALException. ``getPrevious()`` method on DBALException.
Before:
catch(\PDOException $ex) {
// ...
}
After:
catch(\Doctrine\DBAL\DBALException $ex) {
$pdoException = $ex->getPrevious();
// ...
}
## Doctrine\DBAL\Connection#setCharsetSQL() removed ## Doctrine\DBAL\Connection#setCharsetSQL() removed
This method only worked on MySQL and it is considered unsafe on MySQL to use SET NAMES UTF-8 instead This method only worked on MySQL and it is considered unsafe on MySQL to use SET NAMES UTF-8 instead
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment