本章介紹如何從OrientDB命令列獲取範例中所有資料庫的列表。
以下語句是list
命令的基本語法。
LIST DATABASES
註 - 只有在連線到本地或遠端伺服器後,才能使用此命令。
範例
在檢索資料庫列表之前,必須通過遠端伺服器連線到本地主機伺服器。 需要提醒的是,連線到本地主機範例的使用者名和密碼分別是guest
和guest
,它是在orintdb/config/orientdb-server-config.xml
檔案中組態的。
可以使用以下命令連線到localhost
資料庫伺服器範例。
orientdb> connect remote:localhost guest
它會詢問密碼。 根據guest
的組態檔案密碼也是guest
。 如果連線成功,將獲得以下輸出。
Connecting to remote Server instance [remote:localhost] with user 'guest'...OK
orientdb {server = remote:localhost/}>
連線到localhost
資料庫伺服器後,可以使用以下命令列出資料庫。
orientdb {server = remote:localhost/}> list databases
如果它成功執行,將獲得以下輸出 -
Found 6 databases:
* demo (plocal)
* s2 (plocal)
* s1 (plocal)
* GratefulDeadConcerts (plocal)
* s3 (plocal)
* sample (plocal)
orientdb {server = remote:localhost/}>