summaryrefslogtreecommitdiffstats
path: root/debian/libreoffice-sdbc-firebird.NEWS
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:55:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:55:35 +0000
commit0e05dd0e4d67d88ca51780dafe4029744269e6fa (patch)
treeb49073fa569d8d4fbcc7002cf4df72fa840780c1 /debian/libreoffice-sdbc-firebird.NEWS
parentAdding upstream version 4:24.2.0. (diff)
downloadlibreoffice-0e05dd0e4d67d88ca51780dafe4029744269e6fa.tar.xz
libreoffice-0e05dd0e4d67d88ca51780dafe4029744269e6fa.zip
Adding debian version 4:24.2.0-1.debian/4%24.2.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/libreoffice-sdbc-firebird.NEWS')
-rw-r--r--debian/libreoffice-sdbc-firebird.NEWS21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/libreoffice-sdbc-firebird.NEWS b/debian/libreoffice-sdbc-firebird.NEWS
new file mode 100644
index 0000000000..faee0f2cf4
--- /dev/null
+++ b/debian/libreoffice-sdbc-firebird.NEWS
@@ -0,0 +1,21 @@
+libreoffice (1:5.3.0~alpha1-1) experimental; urgency=low
+
+ * LibreOffice switched from Firebird 2.5 to Firebird 3. Unfortunately
+ the format used by the Firebird 2.5 code (fdb - the native on-disk format)
+ is NOT compatible with the "new" one (the archive format). LibreOffice 5.3
+ can NOT read older .odbs having .fdb embedded.
+
+ Some future firebird version might have a way to convert itself/make LO
+ able to convert but until then you need to convert manually as follows:
+
+ You need the gbak tool from firebird2.5:
+ https://packages.debian.org/search?searchon=contents&keywords=gbak&mode=exactfilename&suite=oldstable&arch=any
+
+ Then execute:
+ unzip -d oldFirebird.odb temp;
+ gbak -b temp/database/firebird.fdb temp/database/firebird.fbk;
+ rm temp/database/firebird.fdb
+ zip -FSr oldFirebird.odb temp;
+ rm -r temp;
+
+ -- Rene Engelhard <rene@debian.org> Mon, 28 Nov 2016 10:27:15 +0200