home *** CD-ROM | disk | FTP | other *** search
- ╒═══════════════════════════╕
- │ Data Driven Data Setup │
- │ Revisited for Clipper 5.0 │
- │ by Clayton Neff │
- ╘═══════════════════════════╛
-
-
- Introduction
-
- In the January 1991 Aquarium, I showed you how to set up a data driven
- control system for your data environments. This month we are going to
- look at how to use that same system with Clipper 5.0 code.
-
-
- 5.0 Advantages
-
- Probably the major advantage of using 5.0 for this system is the
- capability to easily load all of your environments into 5.0's new
- multi-dimensional arrays, and keep them in memory. This will reduce
- your file handle count by six (one for each of the three DBFs and
- their associated NTXs), and should drastically speed up how long it
- takes to open a new environment.
-
- Another advantage with 5.0 is the use of code blocks. Rather than
- storing a string representation of the relational expression itself,
- we now store a string representation of a code block that has the
- relational expression contained in it. This allows us to "compile"
- the code block when we read it in from the DBF, and future expansion
- is no longer necessary.
-
- The structure of the data files that was defined last time can still
- be used. In fact, it is only the code using those files that needs to
- change.
-
- NOTE: Due to restrictions in the current release of Clipper 5.0, this
- code will go out of its way to avoid using the SET RELATION command.
- This means that supporting the setting of relations within the data
- environment setup is temporarily disabled. The code is there, but
- commented out. Also, the use of my SET INDEX ADDITIVE TO ... is
- officially frowned upon by Nantucket, as it directly calls an internal
- function (__dbSetIndex()). However, I have provided alternative
- code that is considered acceptable by the powers that be.
-
- One concept that I have left out deliberately is the ability to create
- any missing NTX files. This would be relatively simple to add with a
- another field in DATANTX.DBF containing a code block of the index
- expression. Adding this capability is left as an exercise for the
- reader. (Gads, I LOVE saying that!) (Editor's Note: feel free to
- share your ideas for expansion on the Aquarium BBS!)
-
- I have opted to not use a file-wide static array for this
- implimentation. The reason for this was that ideally new environments
- could be added which the original programmer would not be aware of. By
- passing the entire array back, all the environments are known and
- accessible.
-
- The code is heavily commented, and contains most of the concepts that
- are being presented. If it is at all unclear, please contact me via
- the Aquarium Message Center.
-
-
- About the author
-
- Clayton Neff is the developer of an internationally distributed,
- vertical market dairy herd management package.
-