dresende / node-orm2

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

CONNECTION_PROTOCOL_NOT_SUPPORTED #786

Closed qinhehu closed 7 years ago

qinhehu commented 7 years ago

connection string: app.use(orm.express("mysql://root:123456@localhost/blog", { define: function (db, models, next) { models.User = db.define("user", { id: Number, name: String, username: String, password: String, }); next(); } }));