为什么我不能在MongoDB中创建数据库

时间:2015-04-17 05:48:52

标签: mongodb

我似乎无法创建一个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

1 个答案:

答案 0 :(得分:8)

而不是

a.abc.save({abc:"asdf"})

db.abc.save({abc:"asdf"})

使用命令

use a

您使系统引用数据库a,可以使用关键字db访问该数据库。请参阅Getting Started With the Mongo Shell Guide