Home > Back-end >  How public Tables: List <TableSchem> statement into delphi6 statements.
How public Tables: List <TableSchem> statement into delphi6 statements.

Time:09-18

Excuse me, the following statement, how to convert delphi6 statement?

The unit DbAccess.
Interface
USES the
System. Collections. Generic;

Type
Public DatabaseSchema=class
Public Tables: List;
Public Views: List;

Public constructor Create;
end;//class DatabaseSchema

Implementation

The constructor DatabaseSchema. Create;
The begin
Tables:=List . Create;
Views:=List . Create;
end;

End.

CodePudding user response:

You put your TableSchema and ViewSchema as AnsiString and Integer types, written by Tlist, it is ok to read

CodePudding user response:

You can use TObjectList
  • Related