1
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?

More than 3 years have passed since last update.

【C++Builder】TDBGridで表示するカラム名を任意の文字に変更する

Posted at

データベースはMySQLを使用。

やりたかったこと

データベースから取得した情報をTDBGridに表示させると、データベースのカラム名がそのまま表示されてしまう。そのままだとユーザが分かりにくいので、名称を変更したい。
image.png

設定方法

  1. TFDConnectionのプロパティConnectedをtrueにする
  2. TFDQueryのアイコンをダブルクリックし、FireDACクエリエディタを表示する
  3. 表示したいテーブルのSelect文を書く
    image.png
  4. TFDQueryのプロパティActiveをtrueにする。SQL文の実行結果が表示される。
    image.png

5.TDBGridをダブルクリックする。Columnsの編集ウィンドウが表示されるので、「すべてのフィールドを追加」ボタンを押す
image.png

6.表示文字列を変更したい項目を選択し、プロパティのTitle.Captionを変更する
image.png

変更されました。
image.png

1
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
1
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?