Site icon Embarcadero RAD Studio, Delphi, & C++Builder Blogs

Learn To Populate A String List With Some Data From A Database With The FireDAC.GetFieldNames Delphi Sample

To this end, the sample uses the following methods of the TFDConnection component:

Location

You can find the GetFieldNames sample project at:

How to Use the Sample

  1. Navigate to the location given above and open GetFieldNames.dproj.
  2. Press F9 or choose Run > Run.
  3. Click on the Use Connection Definition combo box and select a database.
    • It populates the list box component labeled as Tables with the names of tables contained in this database.
    • The first item of the Tables list is automatically selected, which fills the list box components labeled as Fields and Key Fields.
    • Click on a different item of the Tables list to see the list of fields and key fields contained in the selected table.

Files

File in DelphiContains
GetFieldNames.dproj
GetFieldNames.dpr
The project itself.
fGetFieldNames.pas
fGetFieldNames.fmx
The main form.

Implementation

The sample implements the following database related features.

Define a connection to a database

To connect to a database, click on the combo box labeled as Use Connection Definition and choose a database.

Get the table names

The sample populates the list box named lbxTables with the name of the tables of the chosen database. The first item of the lbxTables list is automatically selected. To this end, the sample uses a OnClick event and the GetTableNames method. See the following code:

[crayon-672a7322c12b0209018750/]

Get the field names

When you select an item (a table) of the lbxTables list box, the sample populates the list box named lbxFields with the fild names contained on the selected table. To do this, the sample use an OnClick event ant the GetFieldNames method. See the following code:

[crayon-672a7322c12bd563161857/]

Get the key field names

When you select an item (a table) of the lbxTables list box, the sample populates the list box named lbxKeyFields with the key field names contained on the selected table. To do this, the sample use an OnClick event and the GetKeyFieldNames method. See the following code:

[crayon-672a7322c12c0700601339/]

If you want to visit the original post, please visit the next link:

http://docwiki.embarcadero.com/CodeExamples/Sydney/en/FireDAC.GetFieldNames_Sample

Next, find out how you can use your own implementation with list C++ views and Tools API support.

Exit mobile version