Yes, I realized that.
And I found a solution for lx-office.
- create a dump of the database or maybe two (to work with one of them)
- change all CREATE TABLE commands to end with "WITH OIDS", like:
Code:
CREATE TABLE "Umsätze" (
"Kennzeichen" character(10) NOT NULL,
"Datum" date[] NOT NULL,
"km-Stand" integer NOT NULL,
"Kostenart" character(1) NOT NULL,
"Betrag" money
) WITH OIDS;
- delete the old database
- import the changed dump (WITH OIDS) again
- lx-office 2.4.3 works again