用 datagrip 连接 mongodb
use admin
show collections
db.system.version.find({})
db.system.users.find({})
show collections 可以显示 system.version 和 system.users,但是后面 db.system.version.find({})执行报错
java.lang.Exception: TypeError: Cannot read property 'find' of undefined TypeError: Cannot read property 'find' of undefined at user_script:1:1 at ShellEvaluator.<anonymous> (all-standalone.js:86562:36) at step (all-standalone.js:86495: ...
咋办,有没有其他的免费的 mongodb 客户端呢?
1
statement 2020-11-30 17:29:42 +08:00
只能查询 编辑功能都没有吧
|
2
Vegetable 2020-11-30 17:40:17 +08:00
db.getCollection('system.version').find()
|
3
cloud107202 2020-11-30 17:44:11 +08:00
Robo 3T
|
4
hackerang 2020-12-01 10:23:33 +08:00
tableplus
|