2020年11月1日日曜日

SQLite 3 プロンプトの表示「sqlite>」を変更する

概要

SQLite3 のコマンドラインツールで表示される「sqlite>」は「.prompt」コマンドで変更できる。

環境

  • Windows 10 64bit
  • SQLite3 (3.33.0) Command-Line Shell

ヘルプの内容


sqlite> .help .prompt
.prompt MAIN CONTINUE    Replace the standard prompts
                

実行例

「.prompt」の引数は、コマンドを入力する1行目と2行目以降をそれぞれ指定できる。 必ずダブルクォーテーションで囲むこと。


sqlite> .prompt ">>" " >"
>>select
 >  id, name
 >from
 >  product
 >;
                

参考URL