Skip to content

Commit c2e8bf2

Browse files
committed
Prepare 6.4.0 [skip ci]
2 parents b91edee + 20a1826 commit c2e8bf2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ChangeLog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ RDBMS support for the XP Framework: MySQL, Sybase, MSSQL, PostgreSQL, SQLite3, I
66
## 6.4.0 / 2015-07-12
77

88
* Added forward compatibility with XP 6.4.0 - @thekid
9-
* Fixed `rdbms.finder.FinderMethod` to throw correct exception
9+
* Fixed `rdbms.finder.FinderMethod` to throw correct exception - @thekid
10+
* Changed rdbms.tds.TdsConnection's `toString()` to use a less-verbose way
11+
of displaying which protocol is used.
1012
(@thekid)
1113

1214
## 6.3.2 / 2015-06-24

src/main/php/rdbms/tds/TdsConnection.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,6 @@ public function commit($name) {
218218
* @return string
219219
*/
220220
public function toString() {
221-
return $this->getClassName().'(->'.$this->dsn->toString().', '.$this->handle->toString().')';
221+
return $this->getClassName().'(->'.$this->dsn->toString().', '.$this->handle->getClassName().')';
222222
}
223223
}

0 commit comments

Comments
 (0)