home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l210 / 1.ddi / REFEXAMP.ARC / DBSTATS5.PRO < prev    next >
Encoding:
Text File  |  1988-06-21  |  515 b   |  13 lines

  1. %====================== db_statistics/5       ===============================
  2. DOMAINS
  3.   DB_SELECTOR = mydba
  4.  
  5. GOAL
  6. /* You may need to add a path to REGISTER.BIN */
  7.     db_open(mydba,"register.bin",in_file),
  8.     db_statistics(mydba,NoOfTerms,MemSize,DbaSize,FreeSize),
  9.     write("\n\nTotal number of records in the database: ",NoOfTerms),
  10.     write("\nNumber of bytes used in main memory: ",MemSize),
  11.     write("\nNumber of bytes in used by the database: ",DbaSize),
  12.     write("\nNumber of bytes free on disk: ",FreeSize).
  13.