Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

changes.xml 15KB

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