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 954B

12345678910111213141516171819202122232425262728
  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 table, column, index renaming
  9. * EASY
  10. - implement table, column, index deletion
  11. * EASY - MEDIUM
  12. - implement more comprehensive unicode compression write support
  13. * EASY? (have the code, do we trust it?)
  14. - implement createReadOnlyTemp(InputStream) (delete temp file on close)
  15. * EASY
  16. - figure out how msaccess manages page/row locks
  17. * MEDIUM
  18. Refactor goals:
  19. - tweak lookup apis (specify column vs column name)
  20. - clean up javadocs
  21. - enhance public api classes
  22. * add @usage tags to util classes
  23. - implement page buffering in PageChannel
  24. * need to implement logical flushing in update code (startUpdate/finishUpdate)
  25. - implement "lazy" usage maps (load on first usage)?
  26. - add typed getter methods to Row, PropertyMap