home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / DDD5.TXT < prev    next >
Encoding:
Text File  |  1991-05-01  |  2.9 KB  |  66 lines

  1.                         ╒═══════════════════════════╕
  2.                         │  Data Driven Data Setup   │
  3.                         │ Revisited for Clipper 5.0 │
  4.                         │      by Clayton Neff      │
  5.                         ╘═══════════════════════════╛
  6.  
  7.  
  8. Introduction
  9.  
  10. In the January 1991 Aquarium, I showed you how to set up a data driven
  11. control system for your data environments.  This month we are going to
  12. look at how to use that same system with Clipper 5.0 code.
  13.  
  14.  
  15. 5.0 Advantages
  16.  
  17. Probably the major advantage of using 5.0 for this system is the
  18. capability to easily load all of your environments into 5.0's new
  19. multi-dimensional arrays, and keep them in memory.  This will reduce
  20. your file handle count by six (one for each of the three DBFs and
  21. their associated NTXs), and should drastically speed up how long it
  22. takes to open a new environment.
  23.  
  24. Another advantage with 5.0 is the use of code blocks.  Rather than
  25. storing a string representation of the relational expression itself,
  26. we now store a string representation of a code block that has the
  27. relational expression contained in it.  This allows us to "compile"
  28. the code block when we read it in from the DBF, and future expansion
  29. is no longer necessary.
  30.  
  31. The structure of the data files that was defined last time can still
  32. be used. In fact, it is only the code using those files that needs to
  33. change.
  34.  
  35. NOTE: Due to restrictions in the current release of Clipper 5.0, this
  36. code will go out of its way to avoid using the SET RELATION command.
  37. This means that supporting the setting of relations within the data
  38. environment setup is temporarily disabled.  The code is there, but
  39. commented out.  Also, the use of my SET INDEX ADDITIVE TO ... is
  40. officially frowned upon by Nantucket, as it directly calls an internal
  41. function (__dbSetIndex()).  However, I have provided alternative
  42. code that is considered acceptable by the powers that be.
  43.  
  44. One concept that I have left out deliberately is the ability to create
  45. any missing NTX files.  This would be relatively simple to add with a
  46. another field in DATANTX.DBF containing a code block of the index
  47. expression.  Adding this capability is left as an exercise for the
  48. reader. (Gads, I LOVE saying that!)  (Editor's Note: feel free to
  49. share your ideas for expansion on the Aquarium BBS!)
  50.  
  51. I have opted to not use a file-wide static array for this
  52. implimentation.  The reason for this was that ideally new environments
  53. could be added which the original programmer would not be aware of. By
  54. passing the entire array back, all the environments are known and
  55. accessible.
  56.  
  57. The code is heavily commented, and contains most of the concepts that
  58. are being presented.  If it is at all unclear, please contact me via
  59. the Aquarium Message Center.
  60.  
  61.  
  62. About the author
  63.  
  64. Clayton Neff is the developer of an internationally distributed,
  65. vertical market dairy herd management package.
  66.