home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / open / dbdir8.lzh / DBDIR.DOC < prev   
Text File  |  1989-04-03  |  3KB  |  60 lines

  1. +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  2. *
  3. *               Program..: DBDIR.c   Version 8
  4. *               Author...: Vernon E. Davis
  5. *               Date.....: 12/21/86
  6. *               Notes....: a utility for DOS to display
  7. *                          database file information like dBASE.
  8. *
  9. *               Compiled with Turbo C  v2.0
  10. *
  11. *               References:
  12. *                  Advanced Programmers Guide(dBASE) - Ashton Tate
  13. *                  C Language User's Guide - Weber Systems
  14. *                  Programmer's Guide to the IBM PC - Peter Norton
  15. *
  16. *               dBASE is a registered trademark of Ashton Tate
  17. *               Turbo C is a trademark of Borland International
  18. *
  19. *
  20. *  Revision History
  21. *  ~~~~~~~~~~~~~~~~
  22. *  V    Date    Description
  23. *  ~  ~~~~~~~~  ~~~~~~~~~~~
  24. *  1  12/15/86  Preliminary release( Lattice C v3.1 )
  25. *  2  12/21/86  Corrected pointer problem ( *buffer was not reinitialized )
  26. *  3  02/09/87  Added III,III+ distinction; corrected problem in II
  27. *               ( *buffer was not reinitialized )
  28. *  4  08/08/87  Recoded and recompiled under Turbo C v1.0; II info removed
  29. *  5  02/20/88  Recompiled under Turbo C v1.5
  30. *  6  05/04/88  Fixed printf() when memo field is present
  31. *  7  02/04/89  Recompiled under Turbo C v2.0; added IV distinction;
  32. *               added title message; source code included with program.
  33. *  8  04/03/89  Fix to filter DBF type.
  34. *
  35. +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  36.  
  37.   Written by Vernon E. Davis    CompuServe:71330,2705
  38.   Placed in the public domain.
  39.  
  40.   DBDIR is a .COM program to display database files in the current directory.
  41.   It simulates the dBASEIII/IV DIR command displaying not only the filename,
  42.   but # Records, Last Update, Size, Memo(Y/N), Record Length, Number of Fields
  43.   and Version.
  44.  
  45.   By typing DBDIR at the DOS prompt, the display will look similar to this:
  46.  
  47. C>DBDIR
  48. dBDIR.com  version 8 (04/03/89)  Vernon E. Davis
  49.  
  50. Database Files    # Records    Last Update     Size  Memo  RecLen  # Flds  Ver.
  51. STOCK.DBF              107     12/15/86       62903    No     572      52  III+
  52. CUSTOMER.DBF             3     12/15/86        2166    No     444      25  III
  53. VENDOR.DBF             101     12/15/86        7063    No      68       5  III
  54. HISTFILE.DBF             0     12/15/86         930   Yes     244      28   IV
  55. DATEFILE.DBF             0     12/15/86         930    No     244      28  III+
  56.  
  57.    73992 bytes in     5 files.
  58.  1911296 bytes remaining on drive.
  59. ------------------------------------------------------------------------------
  60.