D:\Web\mongo\bin>d:\Web\mongo\bin\mongo.exe
MongoDB shell version: 1.4.0
url: test
connecting to: test
type "exit" to exit
type "help" for help
>
D:\mongodb\bin>mongo.exe
MongoDB shell version: 1.4.0
url: test
connecting to: test
type "exit" to exit
type "help" for help
> use test
switched to db test
> db.foo.save({id:1,name:"cztom"})
> db.foo.find()
{ "_id" : ObjectId("4bc1854e0140000000006f05"), "id" : 1, "name" : "cztom" }