Du kan skifte til en anden database som sådan:
mongodb.MongoClient.connect(mongourl, function(err, database) {
// switch to another database
database = database.db(DATABASE_NAME);
...
});
(dokumenter )
REDIGER :for præcisering:dette giver dig også mulighed for at åbne flere databaser over den samme forbindelse:
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`
...
});