Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在此示例中使用没有 node-orm 和 node-mysql 的连接时有效。但是,当我尝试像这样制作时,它会崩溃。据我了解,orm 重新设计了他们的 api,但没有编辑他们的 wiki。
然而这:
var db = orm.connect("mysql://username:password@hostname/database", function (success, db) {...});
不要崩溃,但成功也是空的:(
我应该如何将 orm 连接到 mysql?
node-orm 有一些问题。不可调试的神奇错误...试试这个:https ://npmjs.org/package/light-orm (简单数据库的关键)
看来您正在使用旧的 orm,使用orm2将使用语法 orm.connect("mysql://username:password@host/database", function (err, db) { if (err) throw err;
orm.connect("mysql://username:password@host/database", function (err, db) { if (err) throw err;