0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【DBeaver】boolean値の結果表示をチェックボックスではなく`true`と`false`の文字列表現に変更する

Last updated at Posted at 2024-10-16

概要

DBeaverでは、デフォルトでは結果セットのbooleanがチェックボックスで表現されます。これが見づらい場合、データ型はbooleanのまま、true or false の文字列表現に変更できます。
image.png

設定箇所

画面上部 ウィンドウ > 設定 から以下の設定画面を開き、赤枠部分を変更します。適用して閉じたら、次回の結果取得から反映されます。
image.png

動作確認用SQL

適当なDBに以下クエリを直接投げれば、booleanの表現を試せます。

-- PostgreSQLで動作確認済
select true as is_success_true, false as is_success_false;
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?