Changeset 33 for trunk/UCore.pas


Ignore:
Timestamp:
Nov 24, 2011, 1:45:12 PM (13 years ago)
Author:
chronos
Message:
  • Modified: ChronisClient now use concept of object proxies. Methods of TObjectProxy and TListProxy is directed through TChronisClient and descendands implementing different protocols and access methods.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r29 r33  
    4343
    4444uses
    45   UApplicationInfo, UChronisClientDirect;
     45  UApplicationInfo, UChronisClientDirect, UChronisClientMySQL;
    4646
    4747{ TCore }
     
    5656  System := TChronisBase.Create;
    5757  System.Database := SqlDatabase1;
    58   System.Client := TChronisClientDirect.Create;
     58  System.Client := TChronisClientMySQL.Create;
     59  TChronisClientMySQL(System.Client).Database := SqlDatabase1;
    5960  System.RegisterModule(TModuleSystem);
    6061  System.ModuleSystem := TModuleSystem(System.Modules.Last);
Note: See TracChangeset for help on using the changeset viewer.