diff --git a/ChangeLog.md b/ChangeLog.md index bf2b113c..8a252a49 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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()` diff --git a/src/main/php/rdbms/DefaultDrivers.class.php b/src/main/php/rdbms/DefaultDrivers.class.php index daf12876..f845af79 100644 --- a/src/main/php/rdbms/DefaultDrivers.class.php +++ b/src/main/php/rdbms/DefaultDrivers.class.php @@ -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'];