You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

changes.xml 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <document>
  2. <properties>
  3. <title>Release notes</title>
  4. <author email="javajedi@users.sf.net">Tim McCune</author>
  5. <author email="jahlborn@users.sf.net">James Ahlborn</author>
  6. </properties>
  7. <body>
  8. <release version="1.1.16" date="TBD">
  9. <action dev="jahlborn" type="fix" issue="2019244">
  10. Reserve minimum space for memo/ole fields so that greedy inline row
  11. usage does not cause spurious write failures for wide tables.
  12. </action>
  13. <action dev="jahlborn" type="fix" issue="2018713">
  14. Better column type translation for very large MEMO/OLE types in the
  15. Database.copyTable logic.
  16. </action>
  17. <action dev="jahlborn" type="fix" issue="2019244">
  18. Add some more limit checking into table creation based on what access
  19. supports (max rows per table, max identifier lengths).
  20. </action>
  21. <action dev="jahlborn" type="fix" issue="2019244">
  22. Share out-of-line long value pages in order to generate more compact
  23. database files.
  24. </action>
  25. <action dev="jahlborn" type="add">
  26. Add primitive support for writing unicode compressed text columns.
  27. </action>
  28. <action dev="jahlborn" type="add">
  29. Add compression code for possible future use; add compression unit
  30. tests.
  31. </action>
  32. </release>
  33. <release version="1.1.15" date="2008-06-27">
  34. <action dev="jahlborn" type="fix" issue="1998225">
  35. Fix writing of large memo/ole fields. Apparently Access does not like
  36. long value fields longer than 4076 bytes.
  37. </action>
  38. <action dev="jahlborn" type="fix">
  39. Reduce maximum row size to what Access considers valid.
  40. </action>
  41. </release>
  42. <release version="1.1.14" date="2008-04-29">
  43. <action dev="jahlborn" type="fix" issue="1924705">
  44. Need to store auto-number values back into row so that indexes can be
  45. updated correctly.
  46. </action>
  47. <action dev="jahlborn" type="fix" issue="1942330">
  48. Access seems to limit data pages to a max of 255 rows.
  49. </action>
  50. <action dev="jahlborn" type="fix" issue="1564870">
  51. Added experimental support for "large" indexes. The current support
  52. is optional. It can be enabled via a variety of means, see the
  53. Database javadoc for more details.
  54. </action>
  55. </release>
  56. <release version="1.1.13" date="2008-03-21">
  57. <action dev="jahlborn" type="fix" issue="1913775">
  58. More fixes for index parsing. Believe index names are now correctly
  59. matched up with indexes.
  60. </action>
  61. <action dev="jahlborn" type="update">
  62. Simplify comparison algorithms for RowId and Index.Entry using type
  63. attributes.
  64. </action>
  65. <action dev="jahlborn" type="fix" issue="1906160">
  66. Expand the characters supported in index updates to all of the
  67. ISO-8859-1 character set.
  68. </action>
  69. <action dev="jahlborn" type="fix">
  70. Fix bug caused by sign extension when reading single-byte row numbers.
  71. </action>
  72. <action dev="jahlborn" type="update">
  73. Modify Index update support so that it honors the "unique" and
  74. "ignoreNulls" properties for the Index.
  75. </action>
  76. <action dev="jahlborn" type="update">
  77. Add support for reading table relationships.
  78. </action>
  79. <action dev="jahlborn" type="fix">
  80. Fix creation of tables with auto-number columns.
  81. </action>
  82. <action dev="jahlborn" type="fix" issue="1832723">
  83. Completely fix problems with sporadic usage map corruption.
  84. </action>
  85. <action dev="jahlborn" type="update">
  86. Add some soft buffer caching in various places to avoid excessive
  87. buffer reallocation.
  88. </action>
  89. <action dev="jahlborn" type="add">
  90. Add some builder-style utilities for table creation (ColumnBuilder,
  91. TableBuilder).
  92. </action>
  93. </release>
  94. <release version="1.1.12" date="2008-02-27">
  95. <action dev="jahlborn" type="fix">
  96. Resolve more edge cases around date handling.
  97. </action>
  98. <action dev="jahlborn" type="fix" issue="1899076">
  99. Fix writing of large memo/ole fields. Apparently Access does not like
  100. "inline" fields longer than 64 bytes.
  101. </action>
  102. <action dev="jahlborn" type="fix" issue="1898793">
  103. Fix generation of security access control entries. Use userIds
  104. already existing in the database file instead of hard-coded userIds,
  105. if possible.
  106. </action>
  107. </release>
  108. <release version="1.1.11" date="2008-01-20">
  109. <action dev="jahlborn" type="fix">
  110. Support reading inline usage maps with more than 512 pages.
  111. </action>
  112. <action dev="jahlborn" type="fix" issue="1832723">
  113. Fix some problems with sporadic usage map corruption.
  114. </action>
  115. <action dev="jahlborn" type="update">
  116. Move from cvs to subversion.
  117. </action>
  118. </release>
  119. <release version="1.1.10" date="2007-12-26">
  120. <action dev="jahlborn" type="add">
  121. Add index based table traversal support to Cursor with optional
  122. sub-range narrowing. Add position save/restore, row find, and a
  123. variety of other features.
  124. </action>
  125. <action dev="jahlborn" type="add">
  126. Move table iteration out of Table and into Cursor. First stage in
  127. offering more complicated table access.
  128. </action>
  129. <action dev="jahlborn" type="fix" issue="1681954">
  130. Update table row count correctly on row deletion or bulk row addition,
  131. bug #1681954.
  132. </action>
  133. <action dev="jahlborn" type="update" issue="1565216">
  134. Add experimental support for auto-number columns, feature request
  135. #1565216.
  136. </action>
  137. <action dev="jahlborn" type="update">
  138. Move project to maven2 and change project groupId to
  139. com.healthmarketscience.jackcess.
  140. </action>
  141. </release>
  142. <release version="1.1.9" date="2007-07-12">
  143. <action dev="jahlborn" type="fix" issue="1675522">
  144. Add support for writing large table definitions, bug #1675522.
  145. </action>
  146. <action dev="jahlborn" type="fix" issue="1748827">
  147. Fix handling of usage maps for large tables, bug #1748827.
  148. </action>
  149. <action dev="jahlborn" type="fix" issue="1672071">
  150. Fixed some edge cases for reading numeric columns, bug #1672071.
  151. </action>
  152. </release>
  153. <release version="1.1.8" date="2007-02-13">
  154. <action dev="jahlborn" type="update">
  155. Additional info in DataType to support better type validation
  156. (scale/precision range). Add "unit size" concept.
  157. </action>
  158. <action dev="jahlborn" type="update">
  159. Add CLOB support in JDBC handling. Add general support for large
  160. types (BLOB/CLOB).
  161. </action>
  162. <action dev="jahlborn" type="update">
  163. Enhance Database.copyTable/importReader to allow for better control
  164. over column definitions and row values through the ImportFilter.
  165. Change default type translation to handle large and variable length
  166. types better.
  167. </action>
  168. </release>
  169. <release version="1.1.7" date="2006-10-02">
  170. <action dev="jahlborn" type="update">
  171. Refactored DataType class, cleaned up a lot of "custom" data type code
  172. springled throughout the codebase.
  173. </action>
  174. <action dev="jahlborn" type="update">
  175. Added sanity checking on table creation (check column/table properties
  176. for validity).
  177. </action>
  178. <action dev="jahlborn" type="update">
  179. Clean up index reading/writing of text columns, add support for more
  180. characters
  181. </action>
  182. <action dev="jahlborn" type="update" issue="1563654">
  183. Support reading 'compressed' indexes (fix 1563654)
  184. </action>
  185. <action dev="jahlborn" type="update">
  186. Implement "overflow" row reading.
  187. </action>
  188. <action dev="jahlborn" type="fix">
  189. Allow multi-page long value reading.
  190. </action>
  191. <action dev="jahlborn" type="update">
  192. Implement multi-page long value writing.
  193. </action>
  194. <action dev="jahlborn" type="fix">
  195. Fix decimal data type writing.
  196. </action>
  197. <action dev="jahlborn" type="update" issue="1545857">
  198. Add support for opening files read-only (fix 1545857)
  199. </action>
  200. </release>
  201. <release version="1.1.6" date="2006-08-07">
  202. <action dev="jahlborn" type="fix" issue="1530312">
  203. Handle more tables with more index slots than actual indexes (fix bug
  204. 1530312)
  205. </action>
  206. <action dev="jahlborn" type="fix" issue="1449812">
  207. Clean up reading/writing 3-byte ints; long value length is 3-bytes
  208. (fix bug 1449812)
  209. </action>
  210. <action dev="jahlborn" type="fix">
  211. Fix handling of skipped rows
  212. </action>
  213. <action dev="jahlborn" type="fix" issue="1306970">
  214. When reading multi-page table def, flip buffer before parsing (fix bug
  215. 1306970)
  216. </action>
  217. <action dev="jahlborn" type="update">
  218. Treat table names as case insensitive; use stored table names when
  219. instantiating tables
  220. </action>
  221. <action dev="jahlborn" type="update">
  222. Make Database and Table Iterable
  223. </action>
  224. <action dev="jahlborn" type="fix">
  225. Use uppercase names when adding text columns to indexes, which fixes
  226. long standing problem with table names starting with lowercase
  227. characters (and other situations where tables could not be opened in
  228. Access). Remove hack which forced every table name to have uppercase
  229. first character.
  230. </action>
  231. <action dev="jahlborn" type="update">
  232. Clean up compressed text handling.
  233. </action>
  234. <action dev="jahlborn" type="update">
  235. Implement reading multi-page long binary values
  236. </action>
  237. </release>
  238. <release version="1.1.5" date="2006-07-25">
  239. <action dev="jahlborn" type="update">
  240. Add support for currency columns (thanks to James Schopp).
  241. </action>
  242. <action dev="jahlborn" type="fix">
  243. Handle tables with no variable length columns correctly.
  244. </action>
  245. <action dev="jahlborn" type="fix">
  246. Handle reading with deleted columns.
  247. </action>
  248. <action dev="jahlborn" type="update">
  249. Read information on primary keys and include in Index.
  250. </action>
  251. <action dev="jahlborn" type="fix">
  252. Fix some issues around reading indexes.
  253. </action>
  254. <action dev="jahlborn" type="update">
  255. Add write support for numeric/GUID columns.
  256. </action>
  257. <action dev="javajedi" type="update">
  258. Added getRowCount(), getName(), updated toString() on Table.
  259. </action>
  260. </release>
  261. <release version="1.1.4" date="2006-6-15">
  262. <action dev="jahlborn" type="fix">
  263. Missing break in switch condition.
  264. </action>
  265. <action dev="jahlborn" type="fix">
  266. Fixes
  267. to reading/writing MEMO/OLE columns.
  268. </action>
  269. <action dev="jahlborn" type="update">
  270. Made exceptions thrown when opening empty or nonexistent files more
  271. specific.
  272. </action>
  273. <action dev="jahlborn" type="fix">
  274. Apply patch from Jon Iles for handilng variable length columns.
  275. </action>
  276. <action dev="jahlborn" type="fix">
  277. Apply patch from Jon Iles for handling dates.
  278. </action>
  279. <action dev="jahlborn" type="fix">
  280. Apply patch from Jon Iles for reading GUIDs.
  281. </action>
  282. </release>
  283. <release version="1.1.3" date="2006-2-16">
  284. <action dev="jahlborn" type="fix">
  285. Fix parsing of NUMERIC type.
  286. </action>
  287. <action dev="javajedi" type="fix">
  288. Applied Jon Iles' patch to allow large table definitions to be read.
  289. </action>
  290. </release>
  291. <release version="1.1.2" date="2005-8-26">
  292. <action dev="javajedi" type="fix" issue="1273712">
  293. Fixed bug where writing null values into fixed-width columns was
  294. failing.
  295. </action>
  296. </release>
  297. <release version="1.1.1" date="2005-8-20">
  298. <action dev="javajedi" type="fix" issue="1261536">
  299. Fixed bug in reading index count from table definition. Skip overflow
  300. rows.
  301. </action>
  302. </release>
  303. <release version="1.1" date="2005-8-12">
  304. <action dev="javajedi" type="update">
  305. JDK 1.5 upgrades
  306. </action>
  307. <action dev="javajedi" type="update">
  308. Applied Mitchell Friedman's patch for support of additional JDBC data
  309. types.
  310. </action>
  311. <action dev="javajedi" type="update">
  312. Added support for deleted rows.
  313. </action>
  314. </release>
  315. <release version="1.0" date="2005-4-7">
  316. <action dev="javajedi" type="add">
  317. Initial release
  318. </action>
  319. </release>
  320. </body>
  321. </document>