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

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