Changeset 23 for trunk/Forms/UFormTables.pas
- Timestamp:
- Mar 26, 2018, 12:40:10 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormTables.pas
r22 r23 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 ActnList, Menus, UDatabase ;9 ActnList, Menus, UDatabase, SpecializedDictionary; 10 10 11 11 type … … 212 212 procedure TFormTables.FormCreate(Sender: TObject); 213 213 begin 214 FTables := TTables.Create (False);214 FTables := TTables.Create; 215 215 end; 216 216 … … 232 232 procedure TFormTables.ReloadList; 233 233 var 234 DbRows: TDbRows; 235 NewTable: TTable; 234 236 I: Integer; 235 237 begin 236 if Assigned(DbClient) then DbClient.LoadTables(Tables) 237 else Tables.Clear; 238 Tables.Clear; 239 if Assigned(DbClient) then begin 240 DbRows := TDbRows.Create; 241 DbClient.Query('SELECT * FROM Model', DbRows); 242 for I := 0 to DbRows.Count - 1 do begin 243 NewTable := Tables.AddNew(TDictionaryStringString(DbRows[I]).Values['Name']); 244 NewTable.Caption := TDictionaryStringString(DbRows[I]).Values['Caption']; 245 end; 246 DbRows.Free; 247 end; 248 238 249 for I := 0 to Tables.Count - 1 do 239 250 TTable(Tables[I]).LoadRecordsCount;
Note:
See TracChangeset
for help on using the changeset viewer.