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

--- Comment #6 from rob...@familiegrosskopf.de ---
(In reply to m.a.riosv from comment #5)
> CREATE TABLE Straße (CUST_NO INTEGER NOT NULL, CUSTOMER VARCHAR(25) NOT
> NULL, PRIMARY KEY (CUST_NO) )

This is wrong code for creating a table with lower characters. "ß" is a special
lower character. With 
CREATE TABLE Strasse
the table will be named STRASSE.
With the right delimiters 
CREATE TABLE "Straße" 
it will work well as observed by you.

There will be used delimiters during the migration-process, because the tables
where shown with lower and upper case characters. So this isn't the problem of
the migration-process.

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