0
最近我開始學習mongodb,今天我發現mongo可以切換到不存在的db。mongodb:切換到不存在的數據庫
> db
test
> use col
switched to db col
> show dbs
local 0.000GB
test 0.000GB
> show collections
> use test
switched to db test
>
爲代碼顯示了我輸入「切換到DB關口」,但DB山坳不存在,也沒有警告或錯誤,爲什麼呢?
這真的很方便有趣 –