Griffin Solution DataBase Toolkit v1.6
-------------------------------------------------------------
This unit handles the objects for all dBase III file (.DBF)
operations including dBase III index (.NDX)
and memo (.DBT) fields.
SHAREWARE -- COMMERCIAL USE RESTRICTED
Health Copyright (c) Richard F. Griffin
8 January 1990
102 Molded Stone Pl
Warner Robins, GA 31088
HEALTH.PAS
-------------------------------------------------------------
The test routine HEALTH.PAS reads two dBase files, using index and memo
files. It first reads file HLTHDATA.DBF, indexed on HLTHDATA.NDX.
using field F_CODE, it finds the matching record in HEALTH.DBF,
indexing on FOODCODE.NDX. Data, including memo fields for some records,
is displayed on the screen.
The records will be displayed one at a time. Press RETURN when
ready for the next record.
The capability to handle multiple files, along with memo and index
files, is demonstrated here.
DB_Make.PAS
-------------------------------------------------------------
This program creates the .PAS unit for a dBase III file.
The resulting unit creates objects for each data field and
the entire database. The units HLTH_UNT.PAS and HLTHDATA.PAS
demonstrate the resulting units.
The program expects two parameters: The dBase file, without
the .DBF extension, and the name you want the resulting unit
to have.
For example, the HLTH_UNT.PAS unit was created by executing:
DM_MAKE HEALTH Hlth_Unt
If the second parameter is left out, the unit will take the
the first parameter.
|