Ignore:
Timestamp:
Mar 23, 2018, 1:59:25 PM (6 years ago)
Author:
chronos
Message:
  • Modified: Database classes reorganized. Now TDbConnectProfile is class which holds information about connection to database.
  • Modified: TDbManager is top most class for managing other database classes.
  • Modified: TDbConnectParams class contains client specific parameters for connect profile.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormMain.pas

    r19 r20  
    7777begin
    7878  NewCaption := Application.Title;
    79   if Assigned(Core.Database) then NewCaption := Core.Database.Name + ' - ' + NewCaption;
     79  if Assigned(Core.DbClient) then
     80    NewCaption := Core.DbClient.ConnectProfile.Name + ' - ' + NewCaption;
    8081  FormMain.Caption := NewCaption;
    8182end;
Note: See TracChangeset for help on using the changeset viewer.