Kexi/Plugins/Tables/Simple alter table: Difference between revisions

From KDE Community Wiki
< Kexi‎ | Plugins‎ | Tables
(Created page with "Design page for task: '''Simple approach to fulfill "Add support for alter table's design without losing data" wish'''. *Started: Jstaniek ([[User talk:Jsta...")
 
Line 12: Line 12:
*Altering some physical properties would require immediate saving of the design but will not remove all the data.  
*Altering some physical properties would require immediate saving of the design but will not remove all the data.  
*Other properties (for which KexiDB::isExtendedTableFieldProperty() return true) can be modified without altering any data.
*Other properties (for which KexiDB::isExtendedTableFieldProperty() return true) can be modified without altering any data.
==Alter actions==
This section publishes details on particular actions of table altering.
===Caption rename===
*triggers name change in propeditor, so:
**if name changed, go to ''Name change'' section
**else, do nothing, caption should be saved on Save action


==Requirements==
==Requirements==
*Full data safety
*Full data safety
**It's better to warn and request data removal than claiming it is not necessary and then doing that
**It's better to warn and request data removal than claiming it is not necessary and then doing that

Revision as of 23:44, 1 September 2012

Design page for task: Simple approach to fulfill "Add support for alter table's design without losing data" wish.

Rationale

Approach when modification to table schema is saved directly after user performed it is much easier than full alter table tired in Kexi 1.x and never delivered.

Analysis

  • Altering some physical properties would require immediate saving of the design but will not remove all the data.
  • Other properties (for which KexiDB::isExtendedTableFieldProperty() return true) can be modified without altering any data.

Alter actions

This section publishes details on particular actions of table altering.

Caption rename

  • triggers name change in propeditor, so:
    • if name changed, go to Name change section
    • else, do nothing, caption should be saved on Save action

Requirements

  • Full data safety
    • It's better to warn and request data removal than claiming it is not necessary and then doing that