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.

TODO.txt 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Missing pieces:
  2. - fix long text index entries (for new general sort order)
  3. * ???
  4. - implement foreign key index creation & relationship creation
  5. * MEDIUM
  6. - implement table creation w/ complex columns
  7. * MEDIUM
  8. - implement (optional) foreign key enforcement
  9. * MEDIUM
  10. - implement write support for properties
  11. * EASY
  12. - implement table, column, index renaming
  13. * EASY
  14. - implement table, column, index deletion
  15. * EASY - MEDIUM
  16. - implement more comprehensive unicode compression write support
  17. * EASY? (have the code, do we trust it?)
  18. - implement createReadOnlyTemp(InputStream) (delete temp file on close)
  19. * EASY
  20. - figure out how msaccess manages page/row locks
  21. * MEDIUM
  22. Refactor goals:
  23. - tweak lookup apis (specify column vs column name)
  24. - clean up javadocs
  25. - enhance public api classes
  26. - add @usage tags to util classes
  27. * change CodecHandler usage to handle not-inline decoding
  28. - pass filename to CodecHandler, enable pwd callbacks CallbackHandler
  29. - pass custom context to CodecHandler?
  30. - rework CryptCodecProvider to have custom
  31. javax.security.auth.callback.CallbackHandler which is only invoked if
  32. password is definitely required.
  33. - implement page buffering in PageChannel
  34. * need to implement logical flushing in update code (startUpdate/finishUpdate)
  35. - refactor free-space handlers Table/Column?
  36. - implement "lazy" usage maps (load on first usage)?
  37. - implement some OLE support
  38. - add typed getter methods to Row