dresende / node-orm2

Object Relational Mapping
http://github.com/dresende/node-orm2
MIT License
3.07k stars 376 forks source link

sqlite path can't resolve " " #776

Closed xyyaya closed 7 years ago

xyyaya commented 7 years ago

When I connect a sqlite database with " ", it will not connect correctly. such as: orm.connect("sqlite://D:/Program Files/test.sqlite", function(err) { //it will throw an error });

I think fix orm/lib/Drivers/DML/sqlite.js:29 like this.db = new sqlite3.Database(decodeURIComponent((config.host ? config.host + ":" : "") may help solve the problem

xyyaya commented 7 years ago

777