home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c017 / 36.ddi / DBTOC.ZIP / DBASE.DOC < prev    next >
Encoding:
Text File  |  1987-11-18  |  1.9 KB  |  58 lines

  1. -----------------------------------------------------------------------
  2.  
  3. To Whom It May Concern:
  4.  
  5.     These functions will allow you to access DBIII+ data files from
  6. C programs.  This source was compiled the the Lattice compiler version
  7. 3.11 In the SMALL memory model. The file I/O functions used were low 
  8. level assembler routines which are included.  These routines merely 
  9. duplicate the library functions already found in the standard C library,  
  10. I did it just for fun !    I'm sure you could convert this source to 
  11. any other C compiler with little or no trouble, good luck !
  12.  
  13. This source code is released into the public domain for personal use only,
  14. if you would like to use it for commercial purposes send $15.00 to
  15.  
  16. Paul McDonald
  17. 2200 Columbia Pike
  18. Apt. 917
  19. Arlington, Va 22204
  20.  
  21. The money will be used to upkeep my BBS (LOGITEK 703-920-7028), any other
  22. donations will also be greatly appreciated.
  23.  
  24.                         Paul McDonald
  25.  
  26. --------------------------------------------------------------------------
  27.  
  28.  
  29.  The following is a quick reference to the functions contained
  30. within:
  31.  
  32.     OPENDBF() - opens a dbf file for read/write access
  33.  
  34.     CLOSEDBF() - closes a dbf file, updates the header, and
  35.                  releases all associated buffers.
  36.  
  37.     READREC() - reads the specified record from the file into
  38.                 the field structure buffers.
  39.  
  40.     WRITEREC() - writes the specified record to the dbf file.
  41.  
  42.     APPEND() - appends a record to the file, fills all fields with
  43.               blanks.
  44.  
  45.     DELETE() - logically deletes a record.
  46.  
  47.     UNDELETE() - logically undeletes a record.
  48.  
  49.     MAKHEAD() - creates the header for a new DBF file.  ( NOT TESTED )
  50.  
  51.     ADDFIELD() - adds a field to the field structure of a new
  52.               file.  (NOT TESTED)
  53.  
  54.     ZAP() - Deletes and packs all records in a file.
  55.  
  56.  
  57.  
  58.