Changeset 113 for trunk/Packages/PersistentData
- Timestamp:
- Oct 16, 2015, 9:14:25 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 6 6 ZdechovNET.lps 7 7 heaptrclog.trc 8 index.dbg
-
- Property svn:ignore
-
trunk/Packages/PersistentData/Backend/UPDClientMemory.pas
r87 r113 162 162 function TPDClientMemory.TypeIsDefined(AType: TPDType): Boolean; 163 163 begin 164 164 Result := False; 165 165 end; 166 166 -
trunk/Packages/PersistentData/Backend/UPDClientMySQL.pas
r87 r113 22 22 function GetConnected: Boolean; override; 23 23 procedure Init; override; 24 function GetConnectionString: string; override; 24 25 public 25 26 procedure ObjectLoad(AObject: TObjectProxy); override; … … 245 246 end; 246 247 248 function TPDClientMySQL.GetConnectionString: string; 249 begin 250 Result := 'Host:' + Host + ',Port:' + IntToStr(Port) + ',User:' + User + 251 ',Password:' + Password + ',Schema:' + Schema; 252 end; 253 247 254 constructor TPDClientMySQL.Create(AOwner: TComponent); 248 255 begin -
trunk/Packages/PersistentData/UPDClient.pas
r87 r113 161 161 162 162 procedure TPDTypePropertyList.AddSimple(Name: string; TypeName: string; 163 Unique: Boolean ; Index: Boolean);163 Unique: Boolean = False; Index: Boolean = False); 164 164 var 165 165 NewProperty: TPDTypeProperty; -
trunk/Packages/PersistentData/UPersistentData.pas
r87 r113 17 17 18 18 TPDManager = class(TComponent) 19 public 19 20 Items: TListObject; 20 21 procedure Register(ClientClass: TPDClientClass);
Note:
See TracChangeset
for help on using the changeset viewer.