चेंजलॉग के अनुसार Mongodb 3.0 के लिए अब आपको इसके बजाय डेटाबेस ऑब्जेक्ट वाला क्लाइंट ऑब्जेक्ट मिलता है:
तो आपको चाहिए db
ऑब्जेक्ट जो उस डेटाबेस को इंगित करता है जिसका आप उपयोग करना चाहते हैं, आपके मामले में mydb. इसे आजमाएं:
var url = "mongodb://localhost:27017/";
MongoClient.connect(url, function(err, db) { //here db is the client obj
if (err) throw err;
var dbase = db.db("mydb"); //here
dbase.createCollection("customers", function(err, res) {
if (err) throw err;
console.log("Collection created!");
db.close(); //close method has also been moved to client obj
});
});