how can i set a callback for the error handling if mongoose isn't able to connect to my DB?
i know of
connection.on('open', function () { ... });
but is there something like
connection.on('error', function (err) { ... });
?
|
how can i set a callback for the error handling if mongoose isn't able to connect to my DB? i know of
but is there something like
? |
|||
|
|
|
When you connect you can pick up the error in the callback:
|
|||||||||
|