home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a031 / template.exe / SCHEMA.DEF < prev   
Encoding:
Text File  |  1992-03-10  |  11.8 KB  |  246 lines

  1. //---------------------------------------------------------------------------
  2. // SCHEMA.DEF      NPI Schema object data selectors
  3. //                 Table, MDX, QBE, and Catalog
  4. // Copyright (c) 1991 Borland International, Inc.
  5. //
  6. // This include file contains all the selectors required for tables.
  7. // *** DO NOT CHANGE ANY OF THE NUMBERS BELOW ***
  8. //
  9. //---------------------------------------------------------------------------
  10. // NOTE:
  11. // Selectors listed in the following table which are shown to have
  12. // "Value: Number" will sometimes return the null string instead
  13. // of the numeric zero.  For logical compares, null is the same
  14. // as zero, however when emitting the value to the output file
  15. // the null string must be converted to a numeric zero explicitly.
  16. // A user defined function is used in the FORM.COD template program
  17. // called NUL2ZERO() for converting null strings to explicit numeric
  18. // zeros.
  19. //---------------------------------------------------------------------------
  20. {
  21. selectors
  22. #lstoff
  23. //
  24. // ELEMENT selectors (FOREACH loop elements)
  25. //
  26. ELEMENT             1000, // All elements types by row & column
  27. BAND_ELEMENT        1102, // QBE Skeleton element
  28. FIELD_ELEMENT       1130, // Field element
  29. TAG_ELEMENT         1119, // Index Tag element
  30. EXAMPLE_ELEMENT     1118, //
  31. FRAME_TEXT_ELEMENT  1175, // Element FRAME_TEXT_ELEMENT
  32. //
  33. // Selectors common to all elements
  34. //
  35. ELEMENT_TYPE        001, // Element types found in Tables are:
  36.                          //     BAND_ELEMENT
  37.                          //     FIELD_ELEMENT
  38.                          //     TAG_ELEMENT
  39. GROUP               091, // In QBE, GROUP holds the work area number:
  40.                          // 1 - 8=A Skel .DBF
  41.                          //     9=Work area for calculations
  42.                          //    10=(Unknown - dummy, perhaps?)
  43.                          //    11=View skeleton
  44. ROW_POSITN          092, // Row number of Element - numeric
  45. COL_POSITN          093, // Column number of Element - numeric
  46. SYS_FLEN            053, // Element length in layout
  47. SYS_INAME           068, // reserved
  48. SYS_FMT             071, // reserved
  49. SYS_PAGE            090, // reserved
  50. SYS_ROW             092, // reserved
  51. SYS_COL             093, // reserved
  52. SYS_ATRB            094, // reserved
  53. //
  54. // Frame level selectors - can be accessed at any time
  55. //
  56. NAME                040, // Name of NPI table object - String
  57. FRAME_CLASS         181, // Object type  (QBE always 22)
  58.                          // Value:11=form, 12=label, 13=report
  59.                          //       20=table,21=update,22=query
  60.                          //       23=catalog
  61. FRAME_PATH          042, // Path of object  - String
  62.  
  63. FRAME_TEXT          120, // Condition Box text.  One for each line in
  64.                          // in the condition box.
  65. // To loop through the condition box text
  66. // Condition box selector {foreach FRAME_TEXT_ELEMENT x
  67. //                            if FRAME_TEXT then
  68. //                                 foreach FRAME_TEXT t in x
  69. //                                      >< FRAMETEXT + CHR(10)><
  70. //                                 next t
  71. //                            else
  72. //                                 >No condition box<
  73. //                            endif
  74. //                         next x>
  75. // <> is used instead of curly braces
  76. //
  77.  
  78. // Refer to dBASE IV Language Reference - Structure of a Database (.DBF) File
  79. TABLE_MOD_DATE      050, // Date of last update; formatted as mm-dd-yy
  80.                          // Example: 7-1-90 or 12-15-90
  81. TABLE_RECS          051, // Number of records in the database file
  82. TABLE_RECLEN        052, // Number of bytes in the record
  83. TABLE_HAS_MDX       059, // Production .mdx file flag; 01H if there is a
  84.                          // production .mdx file, 00H if not
  85. TABLE_FIELD_CNT     065, // Number of fields in the record
  86.  
  87. //
  88. // Field attribute selectors (FOREACH Field_element x .... NEXT)
  89. //
  90. FIELD_NAME          150, // Field name of current table: String
  91. FIELD_TYPE          151, // Field data type in table
  92.                          // Value: 67:char 68:date 70:float
  93.                          //        76:logical 77:memo 78:numeric
  94.                          // ( CHR("C") = 67, CHR("D") = 68, etc. )
  95. FIELD_WIDTH         152, // Length of field in table: Numeric
  96. FIELD_DECIMALS      153, // Number of decimal positions for numeric data
  97. FIELD_INDEX         158, // Production .mdx filed flag; 01H if field has
  98.                          // an index tag in the production .mdx file,
  99.                          // 00h if not
  100.  
  101. //
  102. // Information that pertains to the Production .mdx file
  103. //
  104. MDX_LAST_UPDATE     062, // Date of last .mdx update; formatted like
  105.                          // TABLE_MOD_DATE
  106. MDX_CREATE_DATE     063, // Date .MDX created; formated like TABLE_MOD_DATE
  107. MDX_DBF_NAME        064, // database file name that .MDX goes with
  108.  
  109. //
  110. // Field attribute selectors (FOREACH TAG_ELEMENT x .... NEXT)
  111. //
  112. TAG_NAME            180, // MDX TAG name of current database file
  113. TAG_DATA_TYPE       182, // Data type of index tag
  114.                          // Value: 67:char 68:date 70:float
  115.                          //        76:logical 78:numeric
  116. TAG_MAX_LEN         183, // Maximum length of tag expression; Max. is 100
  117. TAG_UNQ             184, // Flag indicating unique key; 40H if unique,
  118.                          // not shown if not unique
  119. TAG_EXP             185, // MDX index expression - String
  120. TAG_HOST_TYPE       186, // Reserved for future use
  121. TAG_TYPE            187, // MDX type flag.  One or more of these values
  122.                          // may be set at the same time:
  123.                          // Bit Value   Meaning
  124.                          //   1         dBASE IV ndx file; normally not used
  125.                          //   2         mdx file type; normally not used
  126.                          //   4         mdx file is locked; normally not used
  127.                          //   8         mdx descending index
  128.                          //   16        Index can be used in SQL
  129.                          //   32        mdx distinct index (using SQL)
  130.                          //   64        mdx unique index expression
  131.                          //
  132.                          // Typical values include:  24:Descend Only
  133.                          //                          80:Ascending & Unique
  134.                          //                          88:Descend & Unique
  135.                          //                          16:Ascending only
  136. TAG_ONLY            188, // In QBE skeleton COL_LABEL is only a TAG of a MDX
  137.  
  138. //
  139. // Information that pertains to the Catalog (.cat) file.
  140. // One for each catalog record.
  141. //
  142. CAT_DELETED         080, // Calalog entry deleted flag; "*" if deleted,
  143.                          // not present if not deleted.
  144. CAT_PATH            081, // PATH field in the catalog (.CAT) file
  145. CAT_FILE_NAME       082, // FILE_NAME field in the catalog (.CAT) file
  146. CAT_ALIAS           083, // ALIAS in the catalog (.CAT) file
  147. CAT_TYPE            084, // TYPE field in the catalog (.CAT) file;
  148.                          // see dBASE IV manual "Using the Menu System",
  149.                          // chapter 3, table 3-1 for the definition of
  150.                          // the types under each panel
  151. CAT_TITLE           085, // TITLE field in the catalog (.CAT) file; this is
  152.                          // the description for the catalog entry
  153. CAT_CODE            086, // CODE field in the catalog (.CAT) file; this links
  154.                          // entries together when the database or view
  155.                          // is selected for use.
  156. CAT_TAG             087, // TAG field in the catalog (.CAT) file, reserved
  157.                          // for future use
  158.  
  159. //
  160. // Field attribute selectors (FOREACH Band_element x .... NEXT)
  161. // Used to navigate QBE file
  162. SKEL_WA             200, // Skel work area (c.f. GROUP above)
  163. SKEL_TYPE           201, // Skeleton type; 102 ("f") - file skeleton
  164.                          //                107 ("k") - calc'd fields
  165.                          //                99  ("c") - condition box
  166.                          //                118 ("v") - view skeleton
  167. SKEL_GROUPBY        202, // "Group by" flag
  168. SKEL_AGGR           203, // Aggragate function flag
  169. SKEL_UPDATE         204, // What type of Update query
  170.                          // Menu Path: None - Value: 0:QBE 1:Append 2:Replace
  171.                          //                          3:Mark 4:Unmark
  172. SKEL_INDEX          205, // Name of .MDX?
  173. SKEL_NAME           206, // Name of .DBF/Alias
  174. SKEL_UPDATE_TYPE    207, // Four possible values see #204
  175. SKEL_UNIQUE         208, // 1 if pot handle has UNIQUE token
  176. COL_ERR             210, // Error in saved query
  177. COL_DATA_TYPE       212, // Same as #151
  178. COL_DESCEND         213, // "Dsc" flag
  179. COL_UNIQUE          214, // Unique flag
  180. COL_GROUPBY         215, // flag
  181. COL_SORT            216, // flag
  182. COL_AGGR            217, // flag
  183. COL_ORDER_TYPE      218, // Sort order for column
  184.                          // Value: 0:None 1:Ascending 2:Ascending Dictionary
  185.                          //        3:Decending 4:Decending Dictionary
  186. COL_ORDER_NUM       219, // Sort order hierarchy for multiple fields
  187. COL_FIRST           220, // "First" option entered
  188. COL_EVERY           221, // "Every" option entered
  189. COL_GROUPBYX        222, // "Group by" for calc field
  190. COL_AGGR_TYPE       223, // Value:  1=AVG, 2=COUNT, 3=MAX, 4=MIN, 5=SUM
  191. COL_EXAMPLE         224, // Example element in table column
  192. COL_WITH            225, // string COL_WITH
  193. COL_ONLY            226, // string COL_ONLY
  194. COL_EXACTLY         227, // string COL_EXACTLY
  195. COL_NOT             228, // string COL_NOT
  196. COL_TRANSIT_ELEMENT 231, // string COL_TRANSIT_ELEMENT
  197. COL_TRANSIT_LEVELS  232, // number COL_TRANSIT_LEVELS
  198.  
  199. POTHANDLE           234, // Name of view skeleton; contained in a
  200.                          // BAND_ELEMENT with a GROUP value of 11
  201. VFIELD_WA           240, // View field's original work area
  202. VFIELD_RELFLD       241, // View field's relative position in the view
  203. COL_TEXT            242, // Text under skeleton column; such as Filter
  204.                          // Expressions. The conditions on each line have
  205.                          // a suffix for relnum., where relnum. is the
  206.                          // line number starting from 0.  Example, a
  207.                          // column that includes two lines for comparing
  208.                          // a STATE field for "CA" or "WA" would have two
  209.                          // COL_TEXT values;   0."CA"
  210.                          //                    1."WA"
  211. COL_LABEL           243, // Often the same as Fld_name
  212. COL_RENAME          244, // Rename if used twice (self-join)
  213. COL_SOURCE          245, // Text as it appears "raw" under COL name
  214.                          // Ex:  "CA""WA"  Use COL_TEXT for processing each
  215.                          // line in the field skeleton.
  216. P_DOT               247; // Flag to indicate that the field is in the view
  217.                          // skeleton; Non-zero if present, null if not.
  218. #lston
  219. ;
  220. //
  221. // Values returned by Field_type
  222. //
  223. enum tchar =        67,  // Character data maximum length 254
  224.      tdate =        68,  // Date mm/dd/yy
  225.      tfloat=        70,  // Floating point number  10-307  to 10+308
  226.      tlogical=      76,  // logical .t.,.f.,.y.,.n.
  227.      tmemo =        77,  // memo field
  228.      tnumeric =     78;  // numeric
  229. //
  230. // Values of COL_ORDER_TYPE (sort ordering)
  231. //
  232. enum _asc =         1,   // ascending
  233.      _asc_dict =    2,   // ascending dictionary
  234.      _dsc =         3,   // descending
  235.      _dsc_dict =    4;   // descending dictionary
  236. //
  237. // Values of COL_AGGR_TYPE (aggregate operator)
  238. //
  239. enum _avg =         1,   // average
  240.      _count =       2,   // count
  241.      _max =         3,   // maximum
  242.      _min =         4,   // minimum
  243.      _sum =         5;   // sum
  244. }
  245. //-- EOP: SCHEMA.DEF
  246.