Skip to content

Commit

Permalink
Fix reference to SQLite driver
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Sep 3, 2016
1 parent 8d49352 commit f50cba2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ RDBMS support for the XP Framework: MySQL, Sybase, MSSQL, PostgreSQL, SQLite3, I

## ?.?.? / ????-??-??

## 9.0.4 / 2016-09-03

* Fixed reference to SQLite driver - @thekid

## 9.0.3 / 2016-08-29

* Ensure drivers correctly reconnect after an explicit call to `close()`
Expand Down
2 changes: 1 addition & 1 deletion src/main/php/rdbms/DefaultDrivers.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static function __static() {
self::$impl['pgsql']= ['rdbms.pgsql.PostgreSQLConnection'];

// SQLite support
self::$impl['sqlite']= ['rdbms.sqlite3.SQLite3Connection', 'rdbms.sqlite.SQLiteConnection'];
self::$impl['sqlite']= ['rdbms.sqlite3.SQLite3Connection'];

// Interbase support
self::$impl['ibase']= ['rdbms.ibase.InterBaseConnection'];
Expand Down

0 comments on commit f50cba2

Please sign in to comment.