我似乎无法创建一个mongoDB数据库。我读过4个教程,看起来应该很直接。我错过了什么吗?我的安装有什么问题吗?
> use a
switched to db a
> a.abc.save({abc:"asdf"})
2015-04-17T01:39:45.723-0400 E QUERY ReferenceError: a is not defined
at (shell):1:1
> a.abc.insert({abc:"asdf"})
2015-04-17T01:39:58.572-0400 E QUERY ReferenceError: a is not defined
at (shell):1:1
答案 0 :(得分:8)
而不是
a.abc.save({abc:"asdf"})
写
db.abc.save({abc:"asdf"})
使用命令
时use a
您使系统引用数据库a
,可以使用关键字db
访问该数据库。请参阅Getting Started With the Mongo Shell Guide。