Ignore:
Timestamp:
Apr 3, 2012, 8:30:29 AM (12 years ago)
Author:
chronos
Message:
  • Modified: MySQL Schema renamed to more general Path. Path will be used for Registry, INI files and other persistent storages.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • PersistentData/UPDClient.pas

    r340 r345  
    2525    Client: TPDClient;
    2626    ObjectName: string;
    27     SchemaName: string;
     27    Path: string;
    2828    procedure Load;
    2929    procedure Save;
     
    4747    Condition: string;
    4848    ObjectName: string;
    49     SchemaName: string;
     49    Path: string;
    5050    Objects: TListObject; // TListObject<TObjectProxy>
    5151    procedure Clear;
     
    252252  NewProxy := TListProxy.Create;
    253253  NewProxy.Client := Self;
    254   NewProxy.SchemaName := 'information_schema';
     254  NewProxy.Path := 'information_schema';
    255255  NewProxy.ObjectName := 'TABLES';
    256256  NewProxy.Condition := '(TABLE_SCHEMA = "' + Schema +
     
    260260    NewObject := TObjectProxy.Create;
    261261    NewObject.Client := Self;
    262     NewObject.SchemaName := Schema;
     262    NewObject.Path := Schema;
    263263    NewObject.ObjectName := SystemVersionObject;
    264264    NewObject.Id := 1;
     
    278278    NewObject := TObjectProxy.Create;
    279279    NewObject.Client := Self;
    280     NewObject.SchemaName := Schema;
     280    NewObject.Path := Schema;
    281281    NewObject.ObjectName := SystemVersionObject;
    282282    NewObject.Properties.Add('Version', Version);
     
    308308    NewProxy := TListProxy.Create;
    309309    NewProxy.Client := Self;
    310     NewProxy.SchemaName := 'information_schema';
     310    NewProxy.Path := 'information_schema';
    311311    NewProxy.ObjectName := 'TABLES';
    312312    NewProxy.Condition := 'TABLE_SCHEMA = "' + Schema + '"';
Note: See TracChangeset for help on using the changeset viewer.