MongoDB创建集合失败

时间:2015-05-12 18:24:27

标签: mongodb

我正在尝试

1.创建数据库

use testdb switched to db testdb

2。创建集合

testdb.createCollection(testcollection)

我收到以下错误:

2015-05-12T11:21:19.619-0700 E QUERY    ReferenceError: testdb is not defined
    at (shell):1:1

1 个答案:

答案 0 :(得分:5)

正确的方法是使用db.createCollection()方法,您的代码会失败,因为x++;不是您通话testdb中的mongodb对象。请尝试以下方法:

testdb.createCollection(testcollection)