Musíte použít DBCollection.find()
metoda, která
Takže, co musíte udělat, je:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}
Musíte použít DBCollection.find()
metoda, která
Takže, co musíte udělat, je:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}