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 33KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765
  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="2.1.0" date="2015-04-16"
  8. description="Relicense to Apache License">
  9. <action dev="jahlborn" type="add">
  10. OpenHMS relicenses to Apache License, 2.0!
  11. </action>
  12. </release>
  13. <release version="2.0.9" date="2015-03-21">
  14. <action dev="jahlborn" type="fix" system="SourceForge2" issue="116">
  15. Make ColumnBuilder.setMaxLength do the right thing regardless of
  16. column type.
  17. </action>
  18. <action dev="jahlborn" type="update">
  19. Handle input String boolean values.
  20. </action>
  21. <action dev="jahlborn" type="add" system="SourceForge2Features" issue="28">
  22. Added Database.isLinkedTable method to identify if the given Table is
  23. linked to the database.
  24. </action>
  25. <action dev="jahlborn" type="add" system="SourceForge2Features" issue="28">
  26. Added TableIterableBuilder for advanced Table iteration. This allows
  27. selectively including different table types when iterating the tables
  28. in a Database.
  29. </action>
  30. <action dev="jahlborn" type="add" system="SourceForge2Features" issue="29">
  31. Lowered the log level for certain warnings related to system tables
  32. which do not generally affect jackcess functionality.
  33. </action>
  34. <action dev="jahlborn" type="add" system="SourceForge2Features" issue="29">
  35. Added contextual information to many errors and warnings.
  36. </action>
  37. <action dev="jahlborn" type="add" system="SourceForge2Features" issue="29">
  38. Implement support for indexes on BINARY fields.
  39. </action>
  40. <action dev="jahlborn" type="fix" system="SourceForge2" issue="120">
  41. Remove useless warning for fixed length columns lengths with longer
  42. length. Cleanup some other stuff related to copying existing columns
  43. in ColumnBuilder.
  44. </action>
  45. </release>
  46. <release version="2.0.8" date="2014-12-26">
  47. <action dev="jahlborn" type="fix" system="SourceForge2" issue="113">
  48. Add newer sql type to access type mappings if the jvm supports them.
  49. </action>
  50. <action dev="jahlborn" type="fix" system="SourceForge2Patches" issue="17">
  51. Fix table name quoting for append and make table queries.
  52. </action>
  53. <action dev="jahlborn" type="fix" system="SourceForge2Patches" issue="18">
  54. Don't double quote already quoted identifiers.
  55. </action>
  56. <action dev="jahlborn" type="update">
  57. Better validation of identifier names (disallow invalid characters
  58. according to Access naming rules).
  59. </action>
  60. </release>
  61. <release version="2.0.7" date="2014-11-22">
  62. <action dev="jahlborn" type="fix" system="SourceForge2" issue="111">
  63. Unicode compression support was not correct for all possibly
  64. compressed characters.
  65. </action>
  66. <action dev="jahlborn" type="fix" system="SourceForge2" issue="112">
  67. Currency columns will now return an accurate scale and precision.
  68. </action>
  69. </release>
  70. <release version="2.0.6" date="2014-10-04">
  71. <action dev="jahlborn" type="fix" system="SourceForge2" issue="109">
  72. IndexCursor can early exit when searching based on indexed values.
  73. </action>
  74. <action dev="jahlborn" type="fix" system="SourceForge2" issue="110">
  75. Fix regression where empty memo values are returned as null.
  76. </action>
  77. </release>
  78. <release version="2.0.5" date="2014-09-17">
  79. <action dev="jahlborn" type="add">
  80. Add Cursor.findRow(RowId) for moving to a specific Table row using
  81. only the RowId.
  82. </action>
  83. <action dev="jahlborn" type="fix" system="SourceForge2" issue="105">
  84. Add support for reading and writing calculated column values.
  85. Jackcess will not evaluate the actual expressions, but the column
  86. values can be written directly.
  87. </action>
  88. <action dev="jahlborn" type="add">
  89. Add the ability to set properties in DatabaseBuilder, TableBuilder,
  90. and ColumnBuilder.
  91. </action>
  92. <action dev="jahlborn" type="add">
  93. Add the ability to create tables with calculated fields.
  94. </action>
  95. </release>
  96. <release version="2.0.4" date="2014-04-05">
  97. <action dev="jahlborn" type="add">
  98. Add ColumnValidator interface which allows column values to be easily
  99. manipulated/validated as they are written into the database.
  100. </action>
  101. </release>
  102. <release version="2.0.3" date="2014-01-30">
  103. <action dev="jahlborn" type="fix" system="SourceForge2" issue="100">
  104. Fix NullPointerException in RowImpl.toString() when value is null.
  105. </action>
  106. </release>
  107. <release version="2.0.2" date="2013-11-30">
  108. <action dev="jahlborn" type="fix" system="SourceForge2" issue="99">
  109. Rework row add/update so that constraint violations do not leave
  110. behind partially written rows.
  111. </action>
  112. <action dev="jahlborn" type="update">
  113. Add ConstraintViolationException to distinguish exceptions due to
  114. violating database constraints from other random errors.
  115. </action>
  116. </release>
  117. <release version="2.0.1" date="2013-10-13">
  118. <action dev="jahlborn" type="add">
  119. Add initial support for creating/parsing ole content.
  120. </action>
  121. <action dev="jahlborn" type="fix" system="SourceForge2" issue="97">
  122. Ignore invalid column usage map definitions.
  123. </action>
  124. <action dev="jahlborn" type="fix">
  125. Make reading long value columns more lenient (MEMO/OLE).
  126. </action>
  127. <action dev="jahlborn" type="add" system="SourceForge2Features"
  128. issue="16">
  129. Add support for modifying PropertyMaps.
  130. </action>
  131. </release>
  132. <release version="2.0.0" date="2013-08-26"
  133. description="Major API Revision">
  134. <action dev="jahlborn" type="update">
  135. Brand new API! This release is not backwards compatible with 1.x
  136. releases. See Migration Guide at http://jackcess.sourceforge.net/jackcess-2.html
  137. for more details.
  138. </action>
  139. </release>
  140. <release version="1.2.14.3" date="2013-10-13">
  141. <action dev="jahlborn" type="fix" system="SourceForge2" issue="97">
  142. Ignore invalid column usage map definitions.
  143. </action>
  144. <action dev="jahlborn" type="fix">
  145. Make reading long value columns more lenient (MEMO/OLE).
  146. </action>
  147. </release>
  148. <release version="1.2.14.2" date="2013-08-25">
  149. <action dev="jahlborn" type="fix" system="SourceForge2" issue="96">
  150. Fix reading of Properties with multiple value blocks.
  151. </action>
  152. </release>
  153. <release version="1.2.14.1" date="2013-08-11">
  154. <action dev="jahlborn" type="fix" system="SourceForge2Features"
  155. issue="25">
  156. Remove extra object flags before checking query type.
  157. </action>
  158. </release>
  159. <release version="1.2.14" date="2013-07-23">
  160. <action dev="jahlborn" type="fix" system="SourceForge2" issue="95">
  161. Implement handling of usagemaps for long value (MEMO/OLE) columns.
  162. </action>
  163. </release>
  164. <release version="1.2.13" date="2013-06-18">
  165. <action dev="jahlborn" type="fix">
  166. Fix partial page updates when using CodecHandlers which can only do
  167. full page encoding.
  168. </action>
  169. <action dev="jahlborn" type="update">
  170. Add more methods to Database for retrieving Relationships.
  171. </action>
  172. <action dev="jahlborn" type="update">
  173. Implement attachment decoding, thanks to Lorenzo Carrara.
  174. </action>
  175. </release>
  176. <release version="1.2.12" date="2013-05-09">
  177. <action dev="jahlborn" type="fix" system="SourceForge2" issue="94">
  178. Do not unicode compress strings which are longer than 1024 chars.
  179. </action>
  180. </release>
  181. <release version="1.2.10" date="2013-02-18">
  182. <action dev="jahlborn" type="update">
  183. Add info to the Column to support MEMO columns which are HYPERLINKS.
  184. </action>
  185. <action dev="jahlborn" type="fix" system="SourceForge2" issue="22">
  186. Add optional support for enforcing foreign-key constraints/cascading.
  187. This is disabled by default (for backwards compatibility), but can be
  188. controlled globally via a system property and/or on a per-Database
  189. basis using setEnforceForeignKeys() method.
  190. </action>
  191. </release>
  192. <release version="1.2.9" date="2012-10-15">
  193. <action dev="jahlborn" type="update">
  194. Add some more functionality to Joiner to facilitate integrity
  195. enforcement (hasRows and deleteRows).
  196. </action>
  197. <action dev="jahlborn" type="add">
  198. Added DatabaseBuilder for more convenient and flexible Database
  199. open/create.
  200. </action>
  201. <action dev="jahlborn" type="add">
  202. Added the MemFileChannel (and associated support in DatabaseBuilder)
  203. to enable working with Database files completely in memory.
  204. </action>
  205. <action dev="jahlborn" type="fix" system="SourceForge2" issue="92">
  206. Fix some more edge cases in date/time conversions.
  207. </action>
  208. </release>
  209. <release version="1.2.8" date="2012-07-10">
  210. <action dev="jahlborn" type="update" system="SourceForge" issue="3523179">
  211. Add osgi header information to the manifest.
  212. </action>
  213. <action dev="jahlborn" type="update" system="SourceForge" issue="3523181">
  214. Add ImportUtil.toColumns to enable more advanced Table creation
  215. implementations.
  216. </action>
  217. <action dev="jahlborn" type="fix" system="SourceForge" issue="3529534">
  218. Fix NPE when running unit tests with db format MSISAM.
  219. </action>
  220. <action dev="jahlborn" type="fix" system="SourceForge" issue="3532250">
  221. Fix writing partial pages when CodecHandler is in use. Note, this fix
  222. involves a backwards incompatible change to the CodecHandler interface
  223. (Jackcess Encrypt 1.0.3 or later is compatible with this version of
  224. Jackcess).
  225. </action>
  226. </release>
  227. <release version="1.2.7" date="2012-04-02">
  228. <action dev="jahlborn" type="update" system="SourceForge" issue="3479560">
  229. Add initial support for linked tables. Linked tables will now be
  230. loaded by the normal Database.getTable method. Linked tables can be
  231. created using the new Database.createLinkedTable method. Linked table
  232. resolution can be customized per Database by supplying a custom
  233. LinkResolver.
  234. </action>
  235. <action dev="jahlborn" type="update">
  236. Rename and refactor the Cursor find methods to improve usability.
  237. </action>
  238. </release>
  239. <release version="1.2.6" date="2011-12-16">
  240. <action dev="jahlborn" type="update" system="SourceForge" issue="3358272">
  241. Add support for reading/writing complex column data (version history,
  242. attachments, multi-value columns).
  243. </action>
  244. <action dev="jahlborn" type="fix">
  245. Fix problem with creating tables with indexes where ms access could
  246. not open the created table.
  247. </action>
  248. <action dev="jahlborn" type="fix" system="SourceForge" issue="3435774">
  249. Fix problem with reading row from table with deleted/added columns.
  250. </action>
  251. <action dev="jahlborn" type="update">
  252. Reuse previously written memo/ole values when updating other values in
  253. a row in order to reduce unnecessary data duplication.
  254. </action>
  255. <action dev="jahlborn" type="update">
  256. Allow ImportFilter and ExportFilter to return null from filterRow() to
  257. indicate that a row should be skipped.
  258. </action>
  259. <action dev="jahlborn" type="update">
  260. Add option to import file without headers to existing table.
  261. </action>
  262. <action dev="jahlborn" type="add">
  263. Add ImportUtil.Builder and ExportUtil.Builder to simplify
  264. import/export operations.
  265. </action>
  266. </release>
  267. <release version="1.2.5" date="2011-10-19">
  268. <action dev="jahlborn" type="update">
  269. Try multiple classloaders when loading resources as streams.
  270. </action>
  271. <action dev="jahlborn" type="add">
  272. Add the Joiner utility and some new methods to IndexCursor to make it
  273. easier to join tables using pre-defined (index backed) relationships.
  274. </action>
  275. <action dev="jahlborn" type="update">
  276. Enable basic handling of unsupported data types as binary content.
  277. </action>
  278. <action dev="jahlborn" type="update">
  279. Add methods to approximate table size.
  280. </action>
  281. <action dev="jahlborn" type="update">
  282. Add Database.getSystemTableNames to enable retrieving the list of
  283. system/hidden tables.
  284. </action>
  285. <action dev="jahlborn" type="fix">
  286. Fix issue with reading Access 97 database with large number of fields.
  287. </action>
  288. </release>
  289. <release version="1.2.4" date="2011-05-14">
  290. <action dev="jahlborn" type="update">
  291. Refactor table loading to use indexes. Do not load all table names at
  292. database startup (should make startup faster).
  293. </action>
  294. <action dev="jahlborn" type="add">
  295. Add support for reading properties blobs. Add methods for accessing
  296. database, summary, and user-defined properties from the Database. Add
  297. methods to Table and Column for accessing their respective properties.
  298. </action>
  299. <action dev="jahlborn" type="add">
  300. Add support for Access 2010, including new "General" sort order
  301. (support for super-long text index entries still needs work).
  302. </action>
  303. <action dev="jahlborn" type="fix" system="SourceForge" issue="3287626">
  304. Access expects a row to be at least big enough to hold all fixed
  305. values, even if they are null.
  306. </action>
  307. <action dev="jahlborn" type="update">
  308. Add Index.getReferencedIndex for retrieving the referenced Index for a
  309. foreign key index.
  310. </action>
  311. </release>
  312. <release version="1.2.3" date="2011-03-05">
  313. <action dev="jahlborn" type="fix" system="SourceForge" issue="3181334">
  314. Add support for writing all fixed length column types into variable
  315. length fields.
  316. </action>
  317. <action dev="jahlborn" type="fix" system="SourceForge" issue="3192058">
  318. More fixes related to reading and interpreting index information.
  319. Handle multiple logical indexes backed by the same index data.
  320. Interpret foreign key constraint information.
  321. </action>
  322. <action dev="jahlborn" type="update">
  323. Allow MSISAM files to be written (experimental).
  324. </action>
  325. <action dev="jahlborn" type="add">
  326. Add support for creating indexes when creating a new table. Normal
  327. indexes and primary key indexes are currently supported. Foreign key
  328. indexes are not yet supported.
  329. </action>
  330. </release>
  331. <release version="1.2.2" date="2010-11-29">
  332. <action dev="jahlborn" type="update">
  333. Add support for specifying a quote character on import from flat
  334. files.
  335. </action>
  336. <action dev="jahlborn" type="update">
  337. Add support for reading database password.
  338. </action>
  339. <action dev="jahlborn" type="update" system="SourceForge" issue="3065010">
  340. Add support for plugging in implementations of various page
  341. encoding/decoding algorithms. See the &lt;a href="http://jackcessencrypt.sourceforge.net/"&gt;Jackcess Encrypt&lt;/a&gt;
  342. project for a CodecProvider implementation which supports a few of the
  343. Access encodings. (thanks to Vladimir Berezniker).
  344. </action>
  345. <action dev="jahlborn" type="update" system="SourceForge" issue="3101578">
  346. Implement some tweaks which allow jackcess to be used on the Android
  347. platform. See the &lt;a href="faq.html#android"&gt;FAQ&lt;/a&gt; for more
  348. details. (thanks to Miha Pirnat).
  349. </action>
  350. <action dev="jahlborn" type="update" system="SourceForge" issue="3097387">
  351. Allow output column order in tables to be configured.
  352. </action>
  353. <action dev="jahlborn" type="update" system="SourceForge" issue="3105829">
  354. Add support for custom column value matching when finding rows using a
  355. Cursor.
  356. </action>
  357. <action dev="jahlborn" type="fix">
  358. Ignore usagemap inconsistencies in certain (safe) situations.
  359. </action>
  360. </release>
  361. <release version="1.2.1" date="2010-08-01">
  362. <action dev="jahlborn" type="add" system="SourceForge" issue="3005272">
  363. Add ExportUtil and associated utilities for exporting tables to flat
  364. files (thanks to F. Gerbig).
  365. </action>
  366. <action dev="jahlborn" type="fix" system="SourceForge" issue="3011084">
  367. Fix some places where table/columns names were not being handled
  368. case-insensitively.
  369. </action>
  370. <action dev="jahlborn" type="fix" system="SourceForge" issue="3029500">
  371. Make Database.escapeIdentifier public; add methods to TableBuilder and
  372. ColumnBuilder to optionally escape names.
  373. </action>
  374. <action dev="jahlborn" type="update" system="SourceForge" issue="2997751">
  375. Add support for overriding charset and timezone used when
  376. reading/writing database.
  377. </action>
  378. <action dev="jahlborn" type="add" system="SourceForge" issue="3003375">
  379. Add support for reading Access 97 (jet format 3) databases (thanks to
  380. F. Gerbig).
  381. </action>
  382. </release>
  383. <release version="1.2.0" date="2010-04-18">
  384. <action dev="bhamail" type="update" system="SourceForge" issue="1451628">
  385. Add support for access 2002/2003/2007 databases.
  386. </action>
  387. <action dev="jahlborn" type="update">
  388. Enable "large" index support by default. It can still be disabled via
  389. a variety of means, see the Database javadoc for more details.
  390. </action>
  391. <action dev="bhamail" type="fix" system="SourceForge" issue="2968957">
  392. Fix BigIndexTest to work in IDE's w/out sys.prop.
  393. </action>
  394. </release>
  395. <release version="1.1.21" date="2010-01-19">
  396. <action dev="jahlborn" type="fix" system="SourceForge" issue="2899605">
  397. Further improvements to date handling.
  398. </action>
  399. <action dev="jahlborn" type="update">
  400. Handle more binary/character input types (Blob, Clob, InputStream,
  401. Reader), based on user submitted patch.
  402. </action>
  403. <action dev="jahlborn" type="update">
  404. Refactor import/copy methods from Database into ImportUtil. Allow
  405. reuse of existing tables. make behavior/naming of copy and import
  406. methods consistent. (ideas from submitted patch).
  407. </action>
  408. <action dev="jahlborn" type="fix" system="SourceForge" issue="2919216">
  409. Set overflow info in header row, not in last data row.
  410. </action>
  411. <action dev="jahlborn" type="fix" system="SourceForge" issue="2920092">
  412. Add support for indexing strings containing any characters from BMP 0.
  413. </action>
  414. </release>
  415. <release version="1.1.20" date="2009-11-18">
  416. <action dev="jahlborn" type="fix" system="SourceForge" issue="2884599">
  417. Add support for updating GUID indexes and for auto-number GUID
  418. fields.
  419. </action>
  420. <action dev="jahlborn" type="update" system="SourceForge" issue="2802845">
  421. Add support for updating rows in a table.
  422. </action>
  423. <action dev="jahlborn" type="fix" system="SourceForge" issue="2886370">
  424. Support reading/writing fixed length text fields.
  425. </action>
  426. </release>
  427. <release version="1.1.19" date="2009-06-13">
  428. <action dev="jahlborn" type="add">
  429. Add Query reading support.
  430. </action>
  431. <action dev="jahlborn" type="fix" system="SourceForge" issue="2788029">
  432. Be more forgiving for input column length.
  433. </action>
  434. </release>
  435. <release version="1.1.18" date="2008-11-08">
  436. <action dev="jahlborn" type="add">
  437. Add ErrorHandler utility for customizing error handling during row
  438. parsing.
  439. </action>
  440. <action dev="jahlborn" type="add">
  441. Add RowFilter contributed by Patricia Donaldson.
  442. </action>
  443. <action dev="jahlborn" type="update">
  444. Add Database.getSystemTable method for accessing system tables.
  445. </action>
  446. </release>
  447. <release version="1.1.17" date="2008-09-23">
  448. <action dev="jahlborn" type="fix" system="SourceForge" issue="2043499">
  449. Fix simple index handling of tail index pages.
  450. </action>
  451. </release>
  452. <release version="1.1.16" date="2008-07-24">
  453. <action dev="jahlborn" type="fix" system="SourceForge" issue="2019244">
  454. Reserve minimum space for memo/ole fields so that greedy inline row
  455. usage does not cause spurious write failures for wide tables.
  456. </action>
  457. <action dev="jahlborn" type="fix" system="SourceForge" issue="2018713">
  458. Better column type translation for very large MEMO/OLE types in the
  459. Database.copyTable logic.
  460. </action>
  461. <action dev="jahlborn" type="fix" system="SourceForge" issue="2019244">
  462. Add some more limit checking into table creation based on what access
  463. supports (max rows per table, max identifier lengths).
  464. </action>
  465. <action dev="jahlborn" type="fix" system="SourceForge" issue="2019244">
  466. Share out-of-line long value pages in order to generate more compact
  467. database files.
  468. </action>
  469. <action dev="jahlborn" type="add">
  470. Add primitive support for writing unicode compressed text columns.
  471. </action>
  472. <action dev="jahlborn" type="add">
  473. Add compression code for possible future use; add compression unit
  474. tests.
  475. </action>
  476. </release>
  477. <release version="1.1.15" date="2008-06-27">
  478. <action dev="jahlborn" type="fix" system="SourceForge" issue="1998225">
  479. Fix writing of large memo/ole fields. Apparently Access does not like
  480. long value fields longer than 4076 bytes.
  481. </action>
  482. <action dev="jahlborn" type="fix">
  483. Reduce maximum row size to what Access considers valid.
  484. </action>
  485. </release>
  486. <release version="1.1.14" date="2008-04-29">
  487. <action dev="jahlborn" type="fix" system="SourceForge" issue="1924705">
  488. Need to store auto-number values back into row so that indexes can be
  489. updated correctly.
  490. </action>
  491. <action dev="jahlborn" type="fix" system="SourceForge" issue="1942330">
  492. Access seems to limit data pages to a max of 255 rows.
  493. </action>
  494. <action dev="jahlborn" type="fix" system="SourceForge" issue="1564870">
  495. Added experimental support for "large" indexes. The current support
  496. is optional. It can be enabled via a variety of means, see the
  497. Database javadoc for more details.
  498. </action>
  499. </release>
  500. <release version="1.1.13" date="2008-03-21">
  501. <action dev="jahlborn" type="fix" system="SourceForge" issue="1913775">
  502. More fixes for index parsing. Believe index names are now correctly
  503. matched up with indexes.
  504. </action>
  505. <action dev="jahlborn" type="update">
  506. Simplify comparison algorithms for RowId and Index.Entry using type
  507. attributes.
  508. </action>
  509. <action dev="jahlborn" type="fix" system="SourceForge" issue="1906160">
  510. Expand the characters supported in index updates to all of the
  511. ISO-8859-1 character set.
  512. </action>
  513. <action dev="jahlborn" type="fix">
  514. Fix bug caused by sign extension when reading single-byte row numbers.
  515. </action>
  516. <action dev="jahlborn" type="update">
  517. Modify Index update support so that it honors the "unique" and
  518. "ignoreNulls" properties for the Index.
  519. </action>
  520. <action dev="jahlborn" type="update">
  521. Add support for reading table relationships.
  522. </action>
  523. <action dev="jahlborn" type="fix">
  524. Fix creation of tables with auto-number columns.
  525. </action>
  526. <action dev="jahlborn" type="fix" system="SourceForge" issue="1832723">
  527. Completely fix problems with sporadic usage map corruption.
  528. </action>
  529. <action dev="jahlborn" type="update">
  530. Add some soft buffer caching in various places to avoid excessive
  531. buffer reallocation.
  532. </action>
  533. <action dev="jahlborn" type="add">
  534. Add some builder-style utilities for table creation (ColumnBuilder,
  535. TableBuilder).
  536. </action>
  537. </release>
  538. <release version="1.1.12" date="2008-02-27">
  539. <action dev="jahlborn" type="fix">
  540. Resolve more edge cases around date handling.
  541. </action>
  542. <action dev="jahlborn" type="fix" system="SourceForge" issue="1899076">
  543. Fix writing of large memo/ole fields. Apparently Access does not like
  544. "inline" fields longer than 64 bytes.
  545. </action>
  546. <action dev="jahlborn" type="fix" system="SourceForge" issue="1898793">
  547. Fix generation of security access control entries. Use userIds
  548. already existing in the database file instead of hard-coded userIds,
  549. if possible.
  550. </action>
  551. </release>
  552. <release version="1.1.11" date="2008-01-20">
  553. <action dev="jahlborn" type="fix">
  554. Support reading inline usage maps with more than 512 pages.
  555. </action>
  556. <action dev="jahlborn" type="fix" system="SourceForge" issue="1832723">
  557. Fix some problems with sporadic usage map corruption.
  558. </action>
  559. <action dev="jahlborn" type="update">
  560. Move from cvs to subversion.
  561. </action>
  562. </release>
  563. <release version="1.1.10" date="2007-12-26">
  564. <action dev="jahlborn" type="add">
  565. Add index based table traversal support to Cursor with optional
  566. sub-range narrowing. Add position save/restore, row find, and a
  567. variety of other features.
  568. </action>
  569. <action dev="jahlborn" type="add">
  570. Move table iteration out of Table and into Cursor. First stage in
  571. offering more complicated table access.
  572. </action>
  573. <action dev="jahlborn" type="fix" system="SourceForge" issue="1681954">
  574. Update table row count correctly on row deletion or bulk row addition,
  575. bug #1681954.
  576. </action>
  577. <action dev="jahlborn" type="update" system="SourceForge" issue="1565216">
  578. Add experimental support for auto-number columns, feature request
  579. #1565216.
  580. </action>
  581. <action dev="jahlborn" type="update">
  582. Move project to maven2 and change project groupId to
  583. com.healthmarketscience.jackcess.
  584. </action>
  585. </release>
  586. <release version="1.1.9" date="2007-07-12">
  587. <action dev="jahlborn" type="fix" system="SourceForge" issue="1675522">
  588. Add support for writing large table definitions, bug #1675522.
  589. </action>
  590. <action dev="jahlborn" type="fix" system="SourceForge" issue="1748827">
  591. Fix handling of usage maps for large tables, bug #1748827.
  592. </action>
  593. <action dev="jahlborn" type="fix" system="SourceForge" issue="1672071">
  594. Fixed some edge cases for reading numeric columns, bug #1672071.
  595. </action>
  596. </release>
  597. <release version="1.1.8" date="2007-02-13">
  598. <action dev="jahlborn" type="update">
  599. Additional info in DataType to support better type validation
  600. (scale/precision range). Add "unit size" concept.
  601. </action>
  602. <action dev="jahlborn" type="update">
  603. Add CLOB support in JDBC handling. Add general support for large
  604. types (BLOB/CLOB).
  605. </action>
  606. <action dev="jahlborn" type="update">
  607. Enhance Database.copyTable/importReader to allow for better control
  608. over column definitions and row values through the ImportFilter.
  609. Change default type translation to handle large and variable length
  610. types better.
  611. </action>
  612. </release>
  613. <release version="1.1.7" date="2006-10-02">
  614. <action dev="jahlborn" type="update">
  615. Refactored DataType class, cleaned up a lot of "custom" data type code
  616. springled throughout the codebase.
  617. </action>
  618. <action dev="jahlborn" type="update">
  619. Added sanity checking on table creation (check column/table properties
  620. for validity).
  621. </action>
  622. <action dev="jahlborn" type="update">
  623. Clean up index reading/writing of text columns, add support for more
  624. characters
  625. </action>
  626. <action dev="jahlborn" type="update" system="SourceForge" issue="1563654">
  627. Support reading 'compressed' indexes (fix 1563654)
  628. </action>
  629. <action dev="jahlborn" type="update">
  630. Implement "overflow" row reading.
  631. </action>
  632. <action dev="jahlborn" type="fix">
  633. Allow multi-page long value reading.
  634. </action>
  635. <action dev="jahlborn" type="update">
  636. Implement multi-page long value writing.
  637. </action>
  638. <action dev="jahlborn" type="fix">
  639. Fix decimal data type writing.
  640. </action>
  641. <action dev="jahlborn" type="update" system="SourceForge" issue="1545857">
  642. Add support for opening files read-only (fix 1545857)
  643. </action>
  644. </release>
  645. <release version="1.1.6" date="2006-08-07">
  646. <action dev="jahlborn" type="fix" system="SourceForge" issue="1530312">
  647. Handle more tables with more index slots than actual indexes (fix bug
  648. 1530312)
  649. </action>
  650. <action dev="jahlborn" type="fix" system="SourceForge" issue="1449812">
  651. Clean up reading/writing 3-byte ints; long value length is 3-bytes
  652. (fix bug 1449812)
  653. </action>
  654. <action dev="jahlborn" type="fix">
  655. Fix handling of skipped rows
  656. </action>
  657. <action dev="jahlborn" type="fix" system="SourceForge" issue="1306970">
  658. When reading multi-page table def, flip buffer before parsing (fix bug
  659. 1306970)
  660. </action>
  661. <action dev="jahlborn" type="update">
  662. Treat table names as case insensitive; use stored table names when
  663. instantiating tables
  664. </action>
  665. <action dev="jahlborn" type="update">
  666. Make Database and Table Iterable
  667. </action>
  668. <action dev="jahlborn" type="fix">
  669. Use uppercase names when adding text columns to indexes, which fixes
  670. long standing problem with table names starting with lowercase
  671. characters (and other situations where tables could not be opened in
  672. Access). Remove hack which forced every table name to have uppercase
  673. first character.
  674. </action>
  675. <action dev="jahlborn" type="update">
  676. Clean up compressed text handling.
  677. </action>
  678. <action dev="jahlborn" type="update">
  679. Implement reading multi-page long binary values
  680. </action>
  681. </release>
  682. <release version="1.1.5" date="2006-07-25">
  683. <action dev="jahlborn" type="update">
  684. Add support for currency columns (thanks to James Schopp).
  685. </action>
  686. <action dev="jahlborn" type="fix">
  687. Handle tables with no variable length columns correctly.
  688. </action>
  689. <action dev="jahlborn" type="fix">
  690. Handle reading with deleted columns.
  691. </action>
  692. <action dev="jahlborn" type="update">
  693. Read information on primary keys and include in Index.
  694. </action>
  695. <action dev="jahlborn" type="fix">
  696. Fix some issues around reading indexes.
  697. </action>
  698. <action dev="jahlborn" type="update">
  699. Add write support for numeric/GUID columns.
  700. </action>
  701. <action dev="javajedi" type="update">
  702. Added getRowCount(), getName(), updated toString() on Table.
  703. </action>
  704. </release>
  705. <release version="1.1.4" date="2006-6-15">
  706. <action dev="jahlborn" type="fix">
  707. Missing break in switch condition.
  708. </action>
  709. <action dev="jahlborn" type="fix">
  710. Fixes
  711. to reading/writing MEMO/OLE columns.
  712. </action>
  713. <action dev="jahlborn" type="update">
  714. Made exceptions thrown when opening empty or nonexistent files more
  715. specific.
  716. </action>
  717. <action dev="jahlborn" type="fix">
  718. Apply patch from Jon Iles for handilng variable length columns.
  719. </action>
  720. <action dev="jahlborn" type="fix">
  721. Apply patch from Jon Iles for handling dates.
  722. </action>
  723. <action dev="jahlborn" type="fix">
  724. Apply patch from Jon Iles for reading GUIDs.
  725. </action>
  726. </release>
  727. <release version="1.1.3" date="2006-2-16">
  728. <action dev="jahlborn" type="fix">
  729. Fix parsing of NUMERIC type.
  730. </action>
  731. <action dev="javajedi" type="fix">
  732. Applied Jon Iles' patch to allow large table definitions to be read.
  733. </action>
  734. </release>
  735. <release version="1.1.2" date="2005-8-26">
  736. <action dev="javajedi" type="fix" system="SourceForge" issue="1273712">
  737. Fixed bug where writing null values into fixed-width columns was
  738. failing.
  739. </action>
  740. </release>
  741. <release version="1.1.1" date="2005-8-20">
  742. <action dev="javajedi" type="fix" system="SourceForge" issue="1261536">
  743. Fixed bug in reading index count from table definition. Skip overflow
  744. rows.
  745. </action>
  746. </release>
  747. <release version="1.1" date="2005-8-12">
  748. <action dev="javajedi" type="update">
  749. JDK 1.5 upgrades
  750. </action>
  751. <action dev="javajedi" type="update">
  752. Applied Mitchell Friedman's patch for support of additional JDBC data
  753. types.
  754. </action>
  755. <action dev="javajedi" type="update">
  756. Added support for deleted rows.
  757. </action>
  758. </release>
  759. <release version="1.0" date="2005-4-7">
  760. <action dev="javajedi" type="add">
  761. Initial release
  762. </action>
  763. </release>
  764. </body>
  765. </document>