Changeset 113 for trunk/Packages/PersistentData/Backend/UPDClientMySQL.pas
- Timestamp:
- Oct 16, 2015, 9:14:25 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 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/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
Note:
See TracChangeset
for help on using the changeset viewer.