home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / DBT.ZIP / DBTEST.ARC / DBTEST.TYP < prev    next >
Encoding:
Text File  |  1987-12-31  |  421 b   |  12 lines

  1. Type
  2.   TestRec = Record
  3.               RecStatus : Integer;  {now required by TACCESS}
  4.               Date : String[10];   {all dates are String[10]}
  5.               Date2 : String[10];
  6.               TestReal : String[10]; {all reals and integers are stored as strings}
  7.               TestInt  : String[10];
  8.               TestStr  : String[20];
  9.             end;
  10.   MaxDataType = TestRec;
  11.   MaxKeyType = String[20];
  12.