Skip to content

Commit

Permalink
Merge branch 'gerardroche-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mwillbanks committed Aug 9, 2016
2 parents 211b78e + 6920774 commit 3ea75b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ All notable changes to this project will be documented in this file, in reverse
method was incorrect when specifying default join declaration.
- [#145](https://github.com/zendframework/zend-db/pull/145) Fix MSSQL Select
when encounting DISTINCT and OFFSET and LIMIT together.
- [#153](https://github.com/zendframework/zend-db/pull/153) Runtime exception
threw fatal error due to incorrect spelling of the class when a DSN did not
exist.

## 2.8.1 - 2016-04-14

Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Driver/Pdo/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function setConnectionParameters(array $connectionParameters)
public function getDsn()
{
if (!$this->dsn) {
throw new Exception\RunTimeException(
throw new Exception\RuntimeException(
'The DSN has not been set or constructed from parameters in connect() for this Connection'
);
}
Expand Down

0 comments on commit 3ea75b2

Please sign in to comment.