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.0KB

12345678910111213141516171819202122232425262728293031
  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 createReadOnlyTemp(InputStream) (delete temp file on close)
  13. * EASY
  14. - figure out how msaccess manages page/row locks
  15. * MEDIUM
  16. Rename:
  17. - Table - update table def, queries, relationships, complex tables?
  18. - Column - update table def, queries, relationships, complex tables?
  19. - Index - update table def
  20. Index add (fk impl)
  21. - Database.addIndex(IndexBuilder) - use TableCreator internal
  22. - add indexes separately from adding fk info, (backing indexes need to be
  23. added first)
  24. - require baking indexes to be created first (does MSAccess?)
  25. - need to populate index after creation! populate first, then add?
  26. - add relationships
  27. - flush all non-system tables from DbImpl._tableCache (references to old table
  28. impls)