Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. - calculated fields
  19. - v2010+
  20. - no indexes
  21. - no unicode compression
  22. - double/int/longint/single/repid/decimal/text/date/memo/currency/bool, no ole/hyperlink
  23. - read/write, create column
  24. - only uses in-table columns (need to force update on every row update?)
  25. - numeric data has embedded precision/scale, something else? only last 8
  26. bytes is data? implicit precision of 18 for "pure" numeric? implicit
  27. precision of 15 for double-ish numeric?
  28. - ***add unit tests
  29. - ***ability to create calculated columns!
  30. - add properties on table/column creation
  31. - add unit tests
  32. - calculated fields in queries? (2003+), w/ aliases?
  33. Refactor goals:
  34. - tweak lookup apis (specify column vs column name)
  35. - clean up javadocs
  36. - enhance public api classes
  37. * add @usage tags to util classes
  38. - implement page buffering in PageChannel
  39. * need to implement logical flushing in update code (startUpdate/finishUpdate)
  40. - implement "lazy" usage maps (load on first usage)?
  41. - add typed getter methods to Row, PropertyMap