https://bugs.documentfoundation.org/show_bug.cgi?id=71224

--- Comment #14 from rob...@familiegrosskopf.de ---
HSQLDB supports adding a new field at a position before an old field.
ALTER TABLE "Table" ADD "Name" VARCHAR(25) BEFORE "Existing Fieldname";

Firebird supports this:
ALTER TABLE "Table" ADD "Name" VARCHAR(25);
ALTER TABLE "Table" ALTER "Name" POSITION 2;

With Firebird you have to insert the row first. Then you could change the
position of the row afterwords. So it does work also with old and new added
fields.

Would be good if GUI supports adding a *new* field at a special position,
because both internal databases will support to set a field this way.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to