home *** CD-ROM | disk | FTP | other *** search
-
-
-
- clip_ndx.doc (c)Copyright Sequiter Software Inc., 1990-1992.
- All rights reserved.
-
- ---------------------------------------------------------------
-
- CODEBASE 4.5 CLIPPER AND DBASE III VERSION INFORMATION
-
- I. Creating a Clipper or dBASE III version of CodeBase 4.5
-
- II. Clipper or dBASE III Tag and Index definitions
-
- III Using the Clipper or dBASE III version of CodeBase 4.5
-
- IV. Extra Documentation
-
- V. Manually Creating Group Files
-
- VI. Example Clipper or dBASE III version programs.
-
- ----------------------------------------------------------------
-
- I. Creating a Clipper or dBASE III version of CodeBase 4.5
-
- The Clipper file format is similar to the dBASE III format,
- and therefore share common instructions of use.
-
- To create a Clipper or dBASE III version of CodeBase 4.5, rebuild
- the CodeBase 4.5 library with 'S4CLIPPER or S4NDX' defined. Whenever
- you compile your application you will also have to define 'S4CLIPPER
- or S4NDX' .
-
- When using the Clipper or dBASE III version of CodeBase, all
- memo files are created and assumed to be in the Clipper or dBASE
- III compatible format. It is possible to use the dBASE IV memo
- file format by commenting out line 92 in 'D4DATA.H' before compiling
- the library. (i.e. comment out the line that defines S4MNDX, which
- sets CodeBase to use dBASE III style memo files).
-
- ----------------------------------------------------------------
-
- II. Clipper or dBASE III Tag and Index definitions
-
- To effectively use the Clipper or dBASE III version of CodeBase
- 4.5, you will need to understand the following interpretations:
-
- 1. Tag - A tag corresponds to any given '.NTX or .NDX' index file,
- and has a file handle associated with it.
-
- 2. Index - An index consists of one or more tags, along with (in
- some cases) a CodeBase ".CGP" group file. The purpose of the
- group file is to keep a list of all tags corresponding to a
- given index object. The group file is created when the CodeBase
-
- i4create() function is called to create a set of index tags.
-
- ----------------------------------------------------------------
-
- III. Using the Clipper or dBASE III version of CodeBase 4.5
-
- You must always define S4CLIPPER or S4NDX when writing your
- application program, to ensure that the correct CodeBase header
- definitions are used.
-
- The Clipper or dBASE III version is implemented such that a
- Tag corresponds to a single '.NTX or .NDX' index file. For example,
- you would use d4tag_select( "IND1" ) to select the open index
- file "IND1.NTX".
-
- There are two methods for using the Clipper or dBASE III compatible
- version of CodeBase 4.5.
-
- The first method is to create your index files in CodeBase.
- This will create an index group file (.CGP) which corresponds
- to the auto-open features of ".MDX" AND ".CDX" index files. Every
- time a database file is opened in the Clipper or dBASE III compatible
- version, CodeBase looks for a ".CGP" file in the same directory
- and with the same name as the database file. If it finds such
- a file, it assumes that the files contains a list of tags that
- should be opened for the database file. Using this method your
- programs will be completely portable between different index formats,
- so you will not have to modify your programs if you switch to
- ".MDX" or ".CDX" formats. Database files that have no associated
- index files will not have an associated .CGP file. Therefore,
- if you want to open a database file such as this, set the CodeBase
- setting 'auto_open' (see pg. 45) to '0' before opening the database
- file. This will also work for database files that do have associated
- index files, but do not have associated .CGP files.
-
- The alternative method is to use your existing index files
- by opening them as tags using the t4open() command documented
- in section IV. This command will open a given ".NTX" tag, and
- create an index object to correspond one to one with the tag.
- You can also use the t4create() function to create a new tag file
- without a corresponding group file.
-
- If you plan to use dBASE III with the CodeBase .NDX files,
- please note the switch, 'S4USE_COUNT'. When using dBASE III to
- perform deletions, zaps or other operations which should force
- a physical shrinking of the database file, dBASE does not always
- perform the shrinking. This will cause problems when using CodeBase,
- or any other dBASE III compatible product with the database file.
- However, if you set this switch when compiling your CodeBase
- .NDX library, CodeBase will automatically detect and correct the
- database file. The switch is set similar to the CodeBase conditional
- compilation switches found at page 17 in the manual. The switch
- has been set in the supplied CodeBase .NDX dll.
-
- NOTE: If you want to explicitly close a Clipper or dBASE III index
-
- file without closing the database file, use the function i4close().
-
- eg.
- i4close( d4index( <datafile> ) ) ;
-
- ----------------------------------------------------------------
-
- IV. Extra Documentation
-
- Using the Clipper function descend() in index expressions
-
- Since the CodeBase 4.5 manual was printed we have added the
- Clipper function descend() to the list of dBase expression
- functions in Appendix C of the manual that are supported by
- CodeBase 4.5. This function is available only when the CodeBase
- 4.5 is used with S4CLIPPER defined in the compiler options.
-
- The descend() function has the following syntax
-
- descend(argument)
-
- where 'argument' can be of type (D)ate, (N)umeric, (F)loat, or
- (C)haracter. Basically descend() just reverses the sorting order
- of the values of 'argument' so that for example "Zebra" comes before
- "Apple" or 99 comes before 12.
-
- We have also added some utility functions to help you construct
- your seek string when using an index file that uses descend() in its
- index expression. These functions must be used because the
- descend() function modifies the index file entries so that they are
- unrecognizable.
-
- char *u4descend_char ( char *char_string)
- char *u4descend_date ( char *date_string)
- char *u4descend_num ( char *numeric_string)
- char *u4descend ( F4FIELD *field_pointer)
-
- Examples:
-
- A. Index expression = "descend(LAST_NAME)" where LAST_NAME
- is a character field.
-
- d4seek( d4, u4descend_char( "Jones" ) ) ;
-
- B. Index expression = "descend(BIRTHDATE)" where
- BIRTHDATE is a date field.
-
- d4seek( d4, u4descend_date("19920629") ) ;
-
- C. Index expression = "descend(BASE)" where BASE is a numeric
- field of length 8.
-
- d4seek( d4, u4descend_num(" 1231.32" ) ) ;
-
- D. Index expression = "descend(LAST_NAME) + FIRST_NAME" where
-
- LAST_NAME and FIRST_NAME are character fields
-
- strcpy(SeekStr,u4descend_char("Jones");
- strcat(SeekStr,"Tom");
- d4seek(d4,SeekStr);
-
-
- Additional Clipper and dBASE III-Specific Function Calls
-
- T4TAG *S4FUNCTION t4open( D4DATA *d4, I4INDEX *i4ndx, char *file_name )
-
- This function is used to open a given '.NTX or .NDX' tag file.
- If the 'i4ndx' parameter is equal to 0 ( which you should set
- it to ), an I4INDEX structure is created internally along with
- the T4TAG structure that is returned to you. The I4INDEX structure
- can be accessed with the d4index() function, using the tag name
- as the name parameter. This function otherwise acts similarly
- to the i4open() function in the CodeBase manual.
-
- T4TAG *S4FUNCTION t4create( D4DATA *d4, T4TAG_INFO *tag_data,
- I4INDEX *i4ndx )
-
- This function is used to create a tag file without a corresponding
- group file. If the I4INDEX parameter is set to 0 ( which you
- should do ), an index object will be created for your use, and
- can be accessed with the d4index() command with the tag name as
- the name parameter.
-
- The tag_data parameter contains all relevant information for
- the tag, including the tag file name (the name parameter).
-
- Also note that index filters and descending key orderings are
- not available in Clipper or dBASE III-compatible index files.
-
- ----------------------------------------------------------------
-
- V. Manually Creating Group Files
-
- If you want to create a group file for your index files, you
- can easily do it manually. The structure of the group file is
- as follows:
-
- {
- int num_files ; /* the # of tag files corresponding with
- the group for each tag file we have: */
- {
- int len ; /* the length of the file name */
- char *name ; /* the actual file name, the length of which
- is len */ }
- }
-
- For example, a simple group file with 2 index files "NAME" and
- "PHONE" would be as follows: ( and remember reverse byte order,
- 65="A" )
-
-
- hex: ascii: ( . means undefined )
-
- 02 00 04 00 4E 41 4D 45 05 00 50 48 4F 4E 45 ....NAME..PHONE
-
- All file names should be in capital letters. (ascii 65-90)
-
- ----------------------------------------------------------------
-
- VI. Example Clipper or dBASE III version programs.
-
- 1. You can examine any of the programs in the test directory since
- they all work with the CLIPPER or dBASE III version of CodeBase 4.5.
-
- 2. Here are some extra Clipper examples:
-
-
- ---------------------------------
- /*
- NTXEXAM1.C
-
- This program will manually create and use standard .NTX files
- ( i.e. no group file )
-
- */
-
- #include "d4all.h"
-
- #ifdef __TURBOC__
- extern unsigned _stklen = 10000 ;
- #endif
-
- F4FIELD_INFO fields[] =
- {
- { "NAME", 'C', 20, 0 },
- { "PHONE", 'C', 15, 0 },
- { "ZIP", 'C', 6, 0 },
- { 0,0,0,0 },
- } ;
-
- T4TAG_INFO tags[] =
- {
- { "NAME", "NAME", 0,0,0 },
- { "PHONE", "PHONE", 0,0,0 },
- { "ZIP", "ZIP", 0,0,0 },
- { 0,0,0,0,0 },
- } ;
-
- main()
- {
- C4CODE c4 ;
- D4DATA *d4 ;
- T4TAG *name_tag ;
- T4TAG *phone_tag ;
- T4TAG *zip_tag ;
-
-
- d4init( &c4 ) ;
-
- /*
- Alternatively, you can create the database and index group
- file and tags all at once using:
- d4 = d4create( &c4, "ADDRESS", fields, tags ) ;
- */
-
- c4.auto_open = 0 ; /* no group file */
- d4 = d4create( &c4, "ADDRESS", fields, 0 ) ;
-
- name_tag = t4create( d4, &tags[0], 0 ) ; /* optional if .ntx */
- phone_tag = t4create( d4, &tags[1], 0 ) ; /* create second tag */
- zip_tag = t4create( d4, &tags[2], 0 ) ;
-
- d4tag_select( d4, name_tag ) ; /* select name-ordering */
-
- /* ... rest of program ... */
-
- d4close( d4 ) ; /* this will automatically close everything */
- }
-
- ---------------------------------
- /*
- NTXEXAM2.C
-
- This program will manually open and use some existing .NTX
- files created with Clipper.
-
- */
-
- #include "d4all.h"
-
- #ifdef __TURBOC__
- extern unsigned _stklen = 10000 ;
- #endif
-
- main()
- {
- C4CODE c4 ;
- D4DATA *d4 ;
- T4TAG *name_tag ;
- T4TAG *phone_tag ;
- T4TAG *zip_tag ;
- I4INDEX *name_ind ; /* suppose I need to access the name
- tag's index */
-
- d4init( &c4 ) ;
-
- c4.auto_open = 0 ; /* no group file */
- d4 = d4open( &c4, "ADDRESS" ) ;
-
- name_tag = t4open( d4, 0, "NAME.NTX" ) ; /* optional if .ntx */
- phone_tag = t4open( d4, 0, "PHONE" ) ;
- zip_tag = t4open( d4, 0, "ZIP" ) ;
-
-
- name_ind = d4index( d4, "NAME.NTX" ) ;
-
- d4tag_select( d4, name_tag ) ; /* select name-ordering */
-
- i4reindex( name_ind ) ; /* suppose my name tag is out of date,
- so reindex */
- /* ... rest of program ... */
-
- d4close( d4 ) ; /* this will automatically close everything */
- }
-
-