home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac_os2 / rxbas134.zip / HISTORY.DOC < prev    next >
Text File  |  1994-09-04  |  7KB  |  221 lines

  1. American Coders Ltd
  2. P O Box 97462
  3. Raleigh, NC   27624
  4. (919) 846-2014
  5.  
  6. Register Your Copy
  7.  
  8. Read All Documentation
  9.  
  10. - HISTORY -
  11.  
  12. Version 1.34  Sept. 4, 1994
  13.  
  14. Corrected reindex problem.  Program would not reindex the first index in
  15. the opendbf list.
  16.  
  17. Version 1.33  July 20, 1994
  18.  
  19. Corrected problem with indexes.  If you created or recreated indexes and then
  20. immediately added or updated fields associated with the indexes the index
  21. file was corrupted.
  22.  
  23. Version 1.32 July 12, 1994 (Bug fix)
  24.  
  25. - Character Fields were stored right justified
  26.  
  27. Version 1.31 June 23, 1994 (Bug fix)
  28.  
  29. - Memo Fields were not updated in DBT file correctly.
  30.  
  31. - Write, Update, and Pack routines would only process first memo field
  32. of a record.
  33.  
  34. - Improved Pack function.
  35.  
  36. - Recompiled with C Set++ Version 2.1 compiler.
  37.  
  38. Version 1.30 May 27, 1994
  39.  
  40. - Simplified MEMO field access.  MEMO fields are returned as simple
  41.   REXX variable names.  Previous versions had MEMO fields stored as
  42.   complex (STEM) variables, like arrays.
  43.  
  44. - Added a new function Rexxbase_SummarizeDBF to registered version.
  45.  
  46. - Added a new function Rexxbase_ChangePrimaryIndex to registered version.
  47.  
  48. - Added a new function Rexxbase_Soundex to registered version.
  49.  
  50.  
  51. Fixes in Version 1.30
  52.  
  53. - Added logic to update index pointers when RexxBase_GotoRecord function
  54.   used TOP or BOTTOM options.
  55.  
  56. - RexxBase_FindRecord is used against a database with no records created
  57.   a system error SYS3175. 
  58.  
  59. - RexxBase_SortDBF added an extra byte to header.  Data fields off by 1.
  60.  
  61. - For indexes with numeric fields, Rexxbase_WriteDBF was not passing correct 
  62.   index value. 
  63.  
  64. - RexxBase_CreateDBF used in correct data buffer offset.  If used in
  65.   conjunction with WriteDBF, data was written to dbf incorrectly.
  66.  
  67.  
  68. Version 1.23 Mar 15, 1994 (Bug fix)
  69.  
  70. - Forgot to define Rexxbase_ShutDown for LINKER in shareware.DEF file.
  71.   Caused function not found condition.
  72.  
  73. - Forgot to define Rexxbase_ShutDown
  74.                    Rexxbase_FilterDBF
  75.                    Rexxbase_ScanForRecord
  76.                    Rexxbase_JoinDBF for LINKER in registered .DEF file.
  77.   Caused function not found condition.
  78.  
  79. - When opened with an index, ReadPrev would get lost within the database
  80.   when a TOF condition is present.
  81.  
  82. - When opened with an index, if ReadDBF done first, function returned
  83.   second record in index.
  84.  
  85. - Sort routine checked Join connection too soon.  No sorts would work.
  86.  
  87. - Delete and Undelete functions were creating index records.
  88.  
  89. - When writing records to the database an invalid character was
  90.   used for the NON-DELETE indicator.  It was set to /x00 now sets to /x20.
  91.  
  92. - Corrected error in CreateDBF function. NUM FIELDS with DECIMAL POSITIONS
  93.   were rejected.
  94.  
  95. - Corrected error in field truncation. NUM fields with sizes > 9 and
  96.   no DECIMAL POSITIONS were limited to about 2 billion.  Any number greater
  97.   than that was truncated.  Still some rounding errors for fields with
  98.   sizes greater 17 and with decimal positions.  This may be a limitation of
  99.   REXX because the numbers store correctly in DBF.
  100.  
  101. Version 1.22 Mar 1, 1994 (Enhancements and fixes)
  102.  
  103. - Prevented Rexxbase_UpdateDBF from executing when the record pointer
  104. is at TOF or BOF.
  105.  
  106. - Corrected Rexxbase_CloseDBF function.  The database name passed was not
  107. being freed from the list.
  108.  
  109. - Added new function to shareware version:
  110.  
  111.   Rexxbase_ShutDown
  112.  
  113. - Added new functions to registered version:
  114.  
  115.     Rexxbase_FilterDBF
  116.     Rexxbase_ScanForRecord
  117.     Rexxbase_JoinDBF
  118.  
  119. - Added new control variable
  120.  
  121.   Rexxbase.UpdateHeaderCounter
  122.  
  123. - Added the option TOP to the Rexxbase_GotoRecord function.
  124.  
  125. - Added the option BOT or BOTTOM to Rexxbase_GotoRecord function.
  126.  
  127.  
  128. Version 1.21 Feb 14, 1994 (Bug fix)
  129.  
  130. - Updated ReadDBF function for first Index update pointer logic.
  131.  
  132. - Updated CreateIndex function to get field names in a quoted string.
  133.  
  134. - Indexing control variable too small, limitted record counts to < 128.
  135.  
  136. - Problem when passing an empty string i.e. RexxBase_FindRecord('dbf','')
  137.  
  138. - REXXBASE.RECORDNUMBER was misspelled in DLL.
  139. - Rexxbase_ReadPrev would go back two records.
  140. - Rexxbase_GotoRecord abended when run right after Rexxbase_CreateIndex
  141.  
  142.  
  143. Version 1.20 Feb 2, 1994 GA Release
  144.  
  145. - EQUALS parameter to RexxBase.FindRecord
  146.        allows for exact key matching.
  147. - Corrected problem with NDX files not being sharable.
  148.  
  149. Version 1.18 Beta Jan 20, 1994
  150.  
  151. - Added new variable Rexxbase.Version, which contains the
  152. current version number of RexxBase.
  153. - Corrected problem with records created with Clipper.
  154. - Update of index records work only when record was read with
  155. Rexxbase_FindRecord.  Corrected so that index records are updated when
  156. used with any read function.
  157. - Rexxbase_PackDBF abended if file was opened WITHOUT indexes.
  158.  
  159. Version 1.17  Beta Jan. 10, 1993
  160.  
  161. - Added record locking functions.
  162. - Corrected bug that did not allow mulitple database processing.
  163. - Corrected numeric key field length - was too small.
  164. - Added logic to prevent creating keys greater than 100 bytes.
  165. - Documentation updates.
  166.  
  167. Version 1.16  Beta Jan. 3, 1993
  168.  
  169. - Correct field alignment in DBF file. You will have to recreate
  170. your files due to this error.
  171. - Logical fields not stored correctly.
  172. - Logical fields not set correctly.
  173. - Removed zero padding from numeric fields.
  174.  
  175. Version 1.15  Beta Dec. 21, 1993
  176.  
  177. - Last update field not set correctly, mainly effected create
  178. functions.
  179. - Invalid date field should be set to spaces not zeroes.
  180. - Corrected errors in updating numeric fields
  181. - Corrected record alignment
  182.  
  183. Version 1.14  Beta Dec. 15, 1993
  184.  
  185. - Corrected errors in updating numeric fields
  186. - Corrected documentation
  187.  
  188. Version 1.13  Beta Dec 7, 1993 - NOT RELEASED
  189.  
  190. - Corrected errors in index functions - files not closed.
  191. - Corrected documentation
  192.  
  193. Version 1.12  Beta Dec. 1, 1993
  194.  
  195. - Corrected errors in CreateDBF and CreateFromDBF functions
  196. - Corrected documentation
  197.  
  198. Version 1.11  Beta Nov. 22, 1993
  199.  
  200. - CHANGED DATE FORMATTING TO BE COUNTRY CODE SPECIFIC
  201. - Corrected errors in CreateDBF and CreateFromDBF functions
  202. - Corrected documentation
  203.  
  204. Version 1.10  Beta Nov. 15, 1993
  205.  
  206. - Multi file access
  207. - Index access and other functions
  208. - Create functions
  209. - Modify structures
  210. - Improved Initialization Routine
  211. - Improved error reporting
  212. - Improved documentation
  213.  
  214. Version 1.02 Alpha Oct. 15, 1993
  215.  
  216. - Bug fix.
  217.  
  218. Version 1.01 Alpha Sep 1, 1993
  219.  
  220. - Initial release.
  221.