Sie können folgendermaßen zu einer anderen Datenbank wechseln:
mongodb.MongoClient.connect(mongourl, function(err, database) {
// switch to another database
database = database.db(DATABASE_NAME);
...
});
(docs )
BEARBEITEN :zur Verdeutlichung:Damit können Sie auch mehrere Datenbanken über dieselbe Verbindung öffnen:
mongodb.MongoClient.connect(mongourl, function(err, database) {
// open another database over the same connection
var database2 = database.db(DATABASE_NAME);
// now you can use both `database` and `database2`
...
});