home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_01 / 1001032c < prev    next >
Text File  |  1991-11-17  |  396b  |  13 lines

  1. Code to create database table in PFM
  2.  
  3. PAYROLL.INC:
  4. remove payroll.db
  5. create payroll.db
  6. addtab * Employees "List of Employees"
  7. addcol * * Last "Last Name" "%s" NULL "String NoNulls"
  8. addcol * * First "1st Name" "%s" NULL "String NoNulls"
  9. addkey * * LastFirst +Last+First Unique
  10. addcol * * Pay "Pay Rate" "%6.2f" NULL "Real NoNulls"
  11. addcol * * Days "Days Worked" "%2d" NULL Integer
  12. exit
  13.