OrientDB控制台是針對OrientDB資料庫和伺服器範例的Java應用程式。 OrientDB支援幾種控制台模式。
這是預設模式。 只需通過執行以下指令碼bin/console.sh
(或MS Windows系統中的bin/console.bat
)來啟動控制台。 確保有執行許可權。
OrientDB console v.1.6.6 www.orientechnologies.com
Type 'help' to display all the commands supported.
orientdb>
完成後,控制台已準備好接受命令。
要以批次處理模式執行命令,請執行以下bin/console.sh
(或MS Windows系統中的bin/console.bat
)指令碼,以便以分號;
分隔所有命令。
orientdb> console.bat "connect remote:localhost/demo;select * from profile"
或者呼叫控制台指令碼以包含要執行的命令列表的文字格式傳遞檔案的名稱。 命令必須用分號;
分隔。
範例
假設檔案:command.txt
包含要通過OrientDB控制台執行的命令列表。 以下命令接受來自command.txt
檔案的一批命令。
orientdb> console.bat commands.txt
在批次處理模式下,可以忽略錯誤以通過將ignoreErrors
變數設定為true
來讓指令碼繼續執行。
orientdb> set ignoreErrors true
當您在管道中執行控制台命令時,需要顯示它們。 通過在開始處將其設定為屬性來啟用命令的「回顯」。 以下是在OrientDB控制台中啟用echo
屬性的語法。
orientdb> set echo true