Changeset 279 for branches/web/UUser.pas
- Timestamp:
- Mar 5, 2010, 8:52:50 PM (15 years ago)
- Location:
- branches/web
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/web
- Property svn:ignore
-
old new 3 3 *.o 4 4 backup 5 6 5 index.cgi 7 8 6 index.compiled 9 10 7 UConfig.pas 8 bin
-
- Property svn:ignore
-
branches/web/UUser.pas
r158 r279 26 26 IC: Integer; 27 27 DIC: string; 28 procedure LoadFromDbRecord(DbRow: TAssoc Array);28 procedure LoadFromDbRecord(DbRow: TAssociativeArray); 29 29 procedure Store; 30 30 end; … … 41 41 { TUser } 42 42 43 procedure TUser.LoadFromDbRecord(DbRow: TAssoc Array);43 procedure TUser.LoadFromDbRecord(DbRow: TAssociativeArray); 44 44 begin 45 45 Id := StrToInt(DbRow.Values['id']); … … 54 54 procedure TUser.Store; 55 55 var 56 Values: TAssoc Array;56 Values: TAssociativeArray; 57 57 begin 58 Values := TAssoc Array.Create;58 Values := TAssociativeArray.Create; 59 59 Values.AddKeyValue('second_name', SecondName); 60 60 Values.AddKeyValue('first_name', FirstName);
Note:
See TracChangeset
for help on using the changeset viewer.