Created
December 27, 2011 02:24
-
-
Save edwardhotchkiss/1522555 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Uses MongooseJS to Connect to MongoDB | |
* .Maps out all collections within | |
*/ | |
var mongoose = require('mongoose') | |
, MONGO_DB = 'mongodb://localhost/test'; | |
mongoose.connect(MONGO_DB); | |
mongoose.connection.on('open', function(){ | |
mongoose.connection.db.collectionNames(function(error, collections) { | |
if (error) { | |
throw new Error(error); | |
} else { | |
collections.map(function(collection) { | |
console.log('found collection %s', collection.name); | |
}); | |
} | |
}); | |
}); | |
mongoose.connection.on('error', function(error){ | |
throw new Error(error); | |
}); | |
/* EOF */ |
Use util.inspect and tell me what it says ….
Best,
##
Edward Hotchkiss
[email protected]
415.205.0006 / @Stricttype
## http://edwardhotchkiss.com/
…On May 10, 2012, at 6:44 AM, Jurby wrote:
Thanks so much for show. But returns this output: 'collection found [object Object] ".
Here is a fix:
<pre>
...
names.map(function(item) {
console.log('found collection %s', item.name);
});
...
</pre>
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1522555
Code:
console.log(util.inspect(item));
Output: (2 items in mongodb - mongodb://localhost/test)
{ name: 'test.threads' }
{ name: 'test.system.indexes' }
Versions:
- mongodb: 2.0.4
- nodejs: 0.6.14
Yes there is.
Mongodb in MONGO term. returns an array of strings:
Db.getCollectionNames () ["System.indexes", "threads"]
In node script return:
console.log(util.inspect(names)); => [ { name: 'test.threads' }, { name: 'test.system.indexes' } ]
Once more many thanks for your show. Take care.
mongoose.connection.on('open', function (ref) { mongoose.connection.db.collections(function(error, collections) { if (error) { throw new Error(error); } else { collections.map(function(collection) { console.log('found collection %s', collection.s.name); }); } });
is the new name now listCollections ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much for show. But returns this output: 'collection found [object Object] ".
Here is a fix: