Mój serwer mongodb ma bazę danych o nazwie villageContents
Ma kolekcję o nazwie tablebusiness
Gdybym uruchomił mongo, zobaczyłem
MongoDB shell version: 2.0.7
connecting to: test
>
Zastanawiam się, czym jest „test”. Nie ma tam bazy danych o nazwie test.
Próbowałem wykonać
> villageContents.tablebusiness.ensureIndex({"LatitudeLongitude" : "2d"})
Wed Aug 15 09:28:28 ReferenceError:is not defined (shell):1
>
Próbowałem wykonać
> test.villageContents.tablebusiness.ensureIndex({"LatitudeLongitude" : "2d"})
Wed Aug 15 09:29:13 ReferenceError: test is not defined (shell):1
>
Co zrobiłem źle?
Potem zrobiłem
db.villageContents.tablebusiness.ensureIndex({"LatitudeLongitude" : "2d"})
Nic się nie pojawia. Indeksy nie są nawet dodawane.
Więc co jest nie tak?