Reputation: 1143
I am new to MongoDb, i am using it in eclipse Birt Report but i am not getting what is Mongo Database URI in this.???
How to use it.??
Upvotes: 0
Views: 252
Reputation: 151132
Either fill in the "Server", "Host" etc options otherwise available or just post a URI in the form of:
mongodb://[user]:[password]@[hostname]:[port]/[database]
Various driver documentation samples have examples of this. For example the Java driver:
http://api.mongodb.org/java/current/com/mongodb/MongoClientURI.html
Upvotes: 1