Du skal bruge DBCollection.find()
metode, som
Så hvad du skal gøre er:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}
Du skal bruge DBCollection.find()
metode, som
Så hvad du skal gøre er:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}