MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie wählen Sie alle Datensätze aus einer Mongodb-Sammlung in Golang mit mgo aus

Lösung gefunden:

    var results []client

    err := db.C("client").Find(nil).All(&results)
    if err != nil {
        // TODO: Do something about the error
    } else {
        fmt.Println("Results All: ", results) 
    }