次のように別のデータベースに切り替えることができます:
mongodb.MongoClient.connect(mongourl, function(err, database) {
// switch to another database
database = database.db(DATABASE_NAME);
...
});
(ドキュメント )
編集 :明確にするために:これにより、同じ接続で複数のデータベースを開くこともできます:
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`
...
});