Each table has two generated classes, a table and a row class. The table
object is a collection of row objects.
The naming convention for these table objects relies on the prefix
and the name of the table. For the table the naming convention is
T<prefix>Tbl<table name>, and
for the associated row object T<prefix>Tbl<table name>Row.
For instance, if the prefix was ADT and we had a table called 'Patient', the generated table and table row classes would be
TADTTblPatient and
TADTTblPatientRow.