home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cslio205.zip / EXAMPLES / 3 / README.TXT < prev   
Text File  |  1996-11-06  |  2KB  |  45 lines

  1.               ADDRESS demonstration program
  2.               =============================
  3.  
  4.  
  5.  
  6. This is a demonstration database for storing addresses.
  7.  
  8. It gives an adequate impression of what this library was designed for.
  9. No complex client/server approach but strait forward functions to read
  10. and write records.
  11.  
  12. !! The user interface is NOT PART OF CSLIB!                  !!
  13. !! But it can be downloaded from www.xs4all.nl/~combits for free,     !!
  14. !! the file is named CSBDTLD.zip.                      !!
  15. !! It is NOT a product we support and it only works with Borland C++  !!
  16. !! under DOS large memory model.                      !!
  17.  
  18.  
  19. The source consists of two files: 'csadd.cpp'  for the user-interface and
  20. 'csaddio.cpp' for the database.
  21. - 'csaddio.cpp' is generated by the CSDBGEN utility with the file
  22.     'csaddio.def' as input.
  23. - 'csadd.cpp' is 'hand coded'. The file is about 500 lines.
  24.  
  25.  
  26.  
  27.                  Features
  28.                  ========
  29.  
  30.  
  31. This simple demonstration database has already some interesting
  32. features:
  33.     - Incremental search. That is, it 'zero's in' on the name you are
  34.     looking for with every key entered. Normally it finds the
  35.     required record after only two or three characters.
  36.     - Exporting to a dBASE compatible file. The files used by the
  37.     application are not in the dBASE format, but they can be
  38.     exported to a dBASE compatible file.
  39.     - Indexing also on substrings. Contrary to the traditional database,
  40.     this one is capable of locating a record by searching for a
  41.     substring of the key field, rather then the entire field.
  42.  
  43.  
  44.  
  45.