Suche…


Einführung

MongoDB ist ein kostenloses und quelloffenes, open-source-dokumentorientiertes Datenbankprogramm. Als NoSQL-Datenbankprogramm eingestuft, verwendet MongoDB JSON-ähnliche Dokumente mit Schemas.

Weitere Informationen finden Sie unter https://www.mongodb.com/

Syntax

  • MongoClient.connect ('mongodb: //127.0.0.1: 27017 / crud', function (err, db) {// tut etwas hier});

Ein einfaches Beispiel zum Verbinden von MongoDB von Node.JS

MongoClient.connect('mongodb://localhost:27017/myNewDB',function (err,db) {
    if(err) 
        console.log("Unable to connect DB. Error: " + err)
    else 
        console.log('Connected to DB');

    db.close();
});

myNewDB ist DB-Name. Wenn es nicht in der Datenbank vorhanden ist, wird es automatisch mit diesem Aufruf erstellt.

Einfache Möglichkeit, MongoDB mit dem Core Node.JS zu verbinden

  var MongoClient = require('mongodb').MongoClient;
    
    //connection with mongoDB
    MongoClient.connect("mongodb://localhost:27017/MyDb", function (err, db) {
          //check the connection
 if(err){
           console.log("connection failed.");      
}else{
                    console.log("successfully connected to mongoDB.");
    });


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow