@@ -4,6 +4,7 @@
js : fixed saving setter to `tmp` var before invocation (#6672)
php7 : don't fail on generating import aliases for classes with the similar names (#6680)
+ php7 : fixed appending "sqlite:" prefix to the names of files created by `sys.db.Sqlite.open()` (#6692)
php/php7 : fixed `sys.net.Socket.bind()` (#6693)
2017-10-08: 3.4.4
@@ -35,7 +35,7 @@ private class SQLiteConnection implements Connection {
var db:SQLite3;
public function new( file:String ) {
- db = new SQLite3('sqlite:$file');
+ db = new SQLite3(file);
db.enableExceptions(true);
}