OrientDB列出資料庫


本章介紹如何從OrientDB命令列獲取範例中所有資料庫的列表。

以下語句是list命令的基本語法。

LIST DATABASES

註 - 只有在連線到本地或遠端伺服器後,才能使用此命令。

範例

在檢索資料庫列表之前,必須通過遠端伺服器連線到本地主機伺服器。 需要提醒的是,連線到本地主機範例的使用者名和密碼分別是guestguest,它是在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/}>