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

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