Rocksolid Light

Welcome to Rocksolid Light

mail  files  register  newsreader  groups  login

Message-ID:  

<lilo> I've always wanted to have a web site with a big picture of a carrot on it


computers / comp.os.linux.misc / Alternative To Microsoft Access

SubjectAuthor
* Alternative To Microsoft AccessLawrence D'Oliveiro
+* Re: Alternative To Microsoft AccessKyonshi
|`* Re: Alternative To Microsoft AccessLawrence D'Oliveiro
| `- Re: Alternative To Microsoft AccessKyonshi
+- Re: Alternative To Microsoft AccessCarlos E.R.
`* Re: Alternative To Microsoft AccessSteve Hayes
 `* Re: Alternative To Microsoft AccessLawrence D'Oliveiro
  `* Re: Alternative To Microsoft AccessKyonshi
   `- Re: Alternative To Microsoft AccessLawrence D'Oliveiro

1
Alternative To Microsoft Access

<v0hu8c$5ttc$4@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13521&group=comp.os.linux.misc#13521

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Alternative To Microsoft Access
Date: Sat, 27 Apr 2024 04:17:17 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 50
Message-ID: <v0hu8c$5ttc$4@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 27 Apr 2024 06:17:17 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="9e4fadc78fe91d749786c6f98d388f78";
logging-data="194476"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19xSNWZXhE/tY6i7qP57l4j"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:46bXeUVY3fLNHfNjd+mSHEJ3aUg=
 by: Lawrence D'Oliv - Sat, 27 Apr 2024 04:17 UTC

If anybody asks about an alternative to Microsoft Access, I think
SQLite used in combination with LibreOffice will give you a lot of
functionality, including comprehensive SQL support and scalability to
much larger databases.

Of course you can use other backends, like MariaDB/MySQL, as well.
SQLite just makes it easy to have an actual database file that you can
copy/move about the place, without having to do database dumps/restores.
If you don’t need multiuser support, it is very convenient.

I notice that libreoffice-base is now a separate package under Debian
(and I suppose its derivatives as well), no longer included in the
“base” (heh) LibreOffice package. Make sure to install this, along with
libsqliteodbc.

Now, say you have an existing SQLite3 database that you want to access
from LibreOffice. Suppose it is in the file
/home/ldo/hack/lo_try/test.db. In order for databases to be accessible
via ODBC, they need to have entries in your ~/.odbc.ini file. This is
just a text file, in the good old .ini tradition. The format for entries
is very simple, e.g.:

[test-db]
Description=Test database for LibreOffice Base
Driver=SQLite3
Database=/home/ldo/hack/lo_try/test.db

Now, when you launch the LibreOffice Base database wizard, you have
options to “create a new database”, “open an existing database file”, or
“connect to an existing database”. Choose that last one “connect to an
existing database”. The popup menu shows the available back-end
drivers: choose “ODBC”. Now, when you click “Next”, there should be a
text field with a “Browse...” button; clicking this should show the
names of entries in your ~/.odbc.ini file, e.g. “test-db” if you used
the name in my example above.

Select this, and click “Finish”. Next you will be prompted for a name
to save the “database file”. This is just the LibreOffice Base document
that contains the settings for connecting to the actual database:
LibreOffice doesn’t know or care where the database back-end keeps the
actual data.

After having named the LibreOffice database file, you should see the
main LibreOffice Base window. In the lower half, under “Tables”, you
should see a list of the tables from the database file. You can
double-click a table name to see a quick list of all its records.

That’s as far as I’ve got. I see a “Design View”, “Form Wizards”, and
“Report Wizards”, and all kinds of other fun stuff. Should be great for
building simple database applications, with a minimum of programming.

Re: Alternative To Microsoft Access

<v0jl45$i25j$1@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13529&group=comp.os.linux.misc#13529

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: gmkeros@gmail.com (Kyonshi)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Sat, 27 Apr 2024 21:44:15 +0200
Organization: A noiseless patient Spider
Lines: 59
Message-ID: <v0jl45$i25j$1@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 27 Apr 2024 21:53:41 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="d0863d4254b79a6bf436327fb61b53ff";
logging-data="592051"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18u4saix5Yu3nK5n85Q+Zoq"
User-Agent: Betterbird (Windows) Hamster/2.1.0.1548
Cancel-Lock: sha1:XhjS65RMCUFRbFngvJBFko6387Y=
In-Reply-To: <v0hu8c$5ttc$4@dont-email.me>
Content-Language: en-US
 by: Kyonshi - Sat, 27 Apr 2024 19:44 UTC

On 4/27/2024 6:17 AM, Lawrence D'Oliveiro wrote:
> If anybody asks about an alternative to Microsoft Access, I think
> SQLite used in combination with LibreOffice will give you a lot of
> functionality, including comprehensive SQL support and scalability to
> much larger databases.
>
> Of course you can use other backends, like MariaDB/MySQL, as well.
> SQLite just makes it easy to have an actual database file that you can
> copy/move about the place, without having to do database dumps/restores.
> If you don’t need multiuser support, it is very convenient.
>
> I notice that libreoffice-base is now a separate package under Debian
> (and I suppose its derivatives as well), no longer included in the
> “base” (heh) LibreOffice package. Make sure to install this, along with
> libsqliteodbc.
>
> Now, say you have an existing SQLite3 database that you want to access
> from LibreOffice. Suppose it is in the file
> /home/ldo/hack/lo_try/test.db. In order for databases to be accessible
> via ODBC, they need to have entries in your ~/.odbc.ini file. This is
> just a text file, in the good old .ini tradition. The format for entries
> is very simple, e.g.:
>
> [test-db]
> Description=Test database for LibreOffice Base
> Driver=SQLite3
> Database=/home/ldo/hack/lo_try/test.db
>
> Now, when you launch the LibreOffice Base database wizard, you have
> options to “create a new database”, “open an existing database file”, or
> “connect to an existing database”. Choose that last one “connect to an
> existing database”. The popup menu shows the available back-end
> drivers: choose “ODBC”. Now, when you click “Next”, there should be a
> text field with a “Browse...” button; clicking this should show the
> names of entries in your ~/.odbc.ini file, e.g. “test-db” if you used
> the name in my example above.
>
> Select this, and click “Finish”. Next you will be prompted for a name
> to save the “database file”. This is just the LibreOffice Base document
> that contains the settings for connecting to the actual database:
> LibreOffice doesn’t know or care where the database back-end keeps the
> actual data.
>
> After having named the LibreOffice database file, you should see the
> main LibreOffice Base window. In the lower half, under “Tables”, you
> should see a list of the tables from the database file. You can
> double-click a table name to see a quick list of all its records.
>
> That’s as far as I’ve got. I see a “Design View”, “Form Wizards”, and
> “Report Wizards”, and all kinds of other fun stuff. Should be great for
> building simple database applications, with a minimum of programming.

From what I have seen when I checked Base comes with HSQLDB (but yes,
can be connected to basically any SQL database)

--
microblog: https://dice.camp/@kyonshi
macroblog: https://gmkeros.wordpress.com
pictures: https://portfolio.pixelfed.de/kyonshi

Re: Alternative To Microsoft Access

<v0jvti$k8gh$8@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13532&group=comp.os.linux.misc#13532

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Sat, 27 Apr 2024 22:57:54 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <v0jvti$k8gh$8@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me> <v0jl45$i25j$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 28 Apr 2024 00:57:54 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="204de98df41bd5ef7b37f05a187c8914";
logging-data="664081"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/jtqKI8SgFE/mny84Dxr2p"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:ZSD37/DOb/JlFkUFFMPxnzE+qRk=
 by: Lawrence D'Oliv - Sat, 27 Apr 2024 22:57 UTC

On Sat, 27 Apr 2024 21:44:15 +0200, Kyonshi wrote:

> On 4/27/2024 6:17 AM, Lawrence D'Oliveiro wrote:
>>
>> [unnecessary quoting of my entire posting]
>
> From what I have seen when I checked Base comes with HSQLDB ...

Would that put the database inside the actual LibreOffice Base document?

Haven’t found a use for that (yet). I come from already having existing
databases in MySQL/MariaDB and SQLite, and being curious about how I can
make use of them from LibreOffice.

Re: Alternative To Microsoft Access

<aql0gkx04n.ln2@Telcontar.valinor>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13533&group=comp.os.linux.misc#13533

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: robin_listas@es.invalid (Carlos E.R.)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Sun, 28 Apr 2024 03:36:42 +0200
Lines: 10
Message-ID: <aql0gkx04n.ln2@Telcontar.valinor>
References: <v0hu8c$5ttc$4@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net NeTMb3B8PY1jk0cku6SnRATfnrya1tTc6fK0fcMtOm18TEEmBC
X-Orig-Path: Telcontar.valinor!not-for-mail
Cancel-Lock: sha1:917JeynwwjJdqoiTtG3w1tsV3h4= sha256:9Gz1jXcewEDzUSLKrNdgXeWlYIVYm4XXl+mV6lkemDM=
User-Agent: Mozilla Thunderbird
Content-Language: es-ES, en-CA
In-Reply-To: <v0hu8c$5ttc$4@dont-email.me>
 by: Carlos E.R. - Sun, 28 Apr 2024 01:36 UTC

On 2024-04-27 06:17, Lawrence D'Oliveiro wrote:
> If anybody asks about an alternative to Microsoft Access,

Rekall, but it is a dead project. It was closer to M$A than LOB.

https://store.kde.org/p/1126366

--
Cheers, Carlos.

Re: Alternative To Microsoft Access

<v0ls0d$14mns$1@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13534&group=comp.os.linux.misc#13534

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: gmkeros@gmail.com (Kyonshi)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Sun, 28 Apr 2024 17:58:40 +0200
Organization: A noiseless patient Spider
Lines: 24
Message-ID: <v0ls0d$14mns$1@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me> <v0jl45$i25j$1@dont-email.me>
<v0jvti$k8gh$8@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 28 Apr 2024 18:03:25 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="5c7f0790bf71daf08ceadd532ba07a1c";
logging-data="1202940"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18tWypCAP6oLH8xyZwyY1l9"
User-Agent: Betterbird (Windows) Hamster/2.1.0.1548
Cancel-Lock: sha1:L3IL4e4dSoU1Sn7CZk4oT6709io=
Content-Language: en-US
In-Reply-To: <v0jvti$k8gh$8@dont-email.me>
 by: Kyonshi - Sun, 28 Apr 2024 15:58 UTC

On 4/28/2024 12:57 AM, Lawrence D'Oliveiro wrote:
> On Sat, 27 Apr 2024 21:44:15 +0200, Kyonshi wrote:
>
>> On 4/27/2024 6:17 AM, Lawrence D'Oliveiro wrote:
>>>
>>> [unnecessary quoting of my entire posting]
>>
>> From what I have seen when I checked Base comes with HSQLDB ...
>
> Would that put the database inside the actual LibreOffice Base document?
>
> Haven’t found a use for that (yet). I come from already having existing
> databases in MySQL/MariaDB and SQLite, and being curious about how I can
> make use of them from LibreOffice.
>

from my understanding you should be able to. Just wanted to point out
that HSQLDB seems to come packaged with Base, even if you can just
replace the engine

--
microblog: https://dice.camp/@kyonshi
macroblog: https://gmkeros.wordpress.com
pictures: https://portfolio.pixelfed.de/kyonshi

Re: Alternative To Microsoft Access

<jj8u2jlqud0fnm1nfmski7r0isd10gmt8b@4ax.com>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13540&group=comp.os.linux.misc#13540

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: hayesstw@telkomsa.net (Steve Hayes)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Mon, 29 Apr 2024 06:31:28 +0200
Organization: Khanya Publications
Lines: 17
Message-ID: <jj8u2jlqud0fnm1nfmski7r0isd10gmt8b@4ax.com>
References: <v0hu8c$5ttc$4@dont-email.me>
Reply-To: hayesstw@yahoo.com
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 29 Apr 2024 06:30:11 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="af6b65389921cd2206b4d5283a68b24a";
logging-data="1628171"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/PooXMJl/RWfAzHlYsm74a6RbBjJYGkzE="
Cancel-Lock: sha1:fvGYyyZxY60tPl/FcDu3iw+mCS0=
X-No-Archive: yes
X-Newsreader: Forte Free Agent 2.0/32.652
 by: Steve Hayes - Mon, 29 Apr 2024 04:31 UTC

On Sat, 27 Apr 2024 04:17:17 -0000 (UTC), Lawrence D'Oliveiro
<ldo@nz.invalid> wrote:

>If anybody asks about an alternative to Microsoft Access, I think
>SQLite used in combination with LibreOffice will give you a lot of
>functionality, including comprehensive SQL support and scalability to
>much larger databases.

But LibreOffice is dependent on Java, which seems to be deprecated in
some circles.

--
Steve Hayes from Tshwane, South Africa
Web: http://www.khanya.org.za/stevesig.htm
Blog: http://khanya.wordpress.com
E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk

Re: Alternative To Microsoft Access

<v0nc8t$1ikm0$2@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13541&group=comp.os.linux.misc#13541

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Mon, 29 Apr 2024 05:47:10 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 18
Message-ID: <v0nc8t$1ikm0$2@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me>
<jj8u2jlqud0fnm1nfmski7r0isd10gmt8b@4ax.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 29 Apr 2024 07:47:10 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="04215bbbe15e1cd8ac94ba1cee5d62b8";
logging-data="1659584"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+2NYDbAyulY+6iTSjDLjIj"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:jICSAsT6xYFYIWf0A+2hORDn65E=
 by: Lawrence D'Oliv - Mon, 29 Apr 2024 05:47 UTC

On Mon, 29 Apr 2024 06:31:28 +0200, Steve Hayes wrote:

> On Sat, 27 Apr 2024 04:17:17 -0000 (UTC), Lawrence D'Oliveiro
> <ldo@nz.invalid> wrote:
>
>>If anybody asks about an alternative to Microsoft Access, I think
>>SQLite used in combination with LibreOffice will give you a lot of
>>functionality, including comprehensive SQL support and scalability to
>>much larger databases.
>
> But LibreOffice is dependent on Java, which seems to be deprecated in
> some circles.

I did have some LibreOffice Java stuff installed, so I did this

dpkg -r liblibreoffice-java libreoffice-java-common libreoffice-sdbc-hsqldb

and my LibreOffice Base access still works fine.

Re: Alternative To Microsoft Access

<v0njsj$1ke54$1@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13542&group=comp.os.linux.misc#13542

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.szaf.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!news.eyrie.org!jik4.kamens.us!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: gmkeros@gmail.com (Kyonshi)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Mon, 29 Apr 2024 09:26:50 +0200
Organization: A noiseless patient Spider
Lines: 22
Message-ID: <v0njsj$1ke54$1@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me>
<jj8u2jlqud0fnm1nfmski7r0isd10gmt8b@4ax.com> <v0nc8t$1ikm0$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 29 Apr 2024 09:57:08 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="91660fa1f2291112a68869356cae6912";
logging-data="1718436"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/QCz5+VHbu+EvDbKWkqyoE"
User-Agent: Betterbird (Windows) Hamster/2.1.0.1548
Cancel-Lock: sha1:1KXUlHPhFYRtqbYcLsjmEU2+aoI=
In-Reply-To: <v0nc8t$1ikm0$2@dont-email.me>
Content-Language: en-US
 by: Kyonshi - Mon, 29 Apr 2024 07:26 UTC

On 4/29/2024 7:47 AM, Lawrence D'Oliveiro wrote:
> On Mon, 29 Apr 2024 06:31:28 +0200, Steve Hayes wrote:
>
>> On Sat, 27 Apr 2024 04:17:17 -0000 (UTC), Lawrence D'Oliveiro
>> <ldo@nz.invalid> wrote:
>>
>>> If anybody asks about an alternative to Microsoft Access, I think
>>> SQLite used in combination with LibreOffice will give you a lot of
>>> functionality, including comprehensive SQL support and scalability to
>>> much larger databases.
>>
>> But LibreOffice is dependent on Java, which seems to be deprecated in
>> some circles.
>
> I did have some LibreOffice Java stuff installed, so I did this
>
> dpkg -r liblibreoffice-java libreoffice-java-common libreoffice-sdbc-hsqldb
>
> and my LibreOffice Base access still works fine.

I think the Java part is actually the included database. if you don't
use that one then it still should be fine.

Re: Alternative To Microsoft Access

<v0nkbo$1kh74$1@dont-email.me>

  copy mid

http://rslight.i2p/computers/article-flat.php?id=13543&group=comp.os.linux.misc#13543

  copy link   Newsgroups: comp.os.linux.misc comp.databases
Path: i2pn2.org!i2pn.org!news.swapon.de!news.mixmin.net!news2.arglkargh.de!news.karotte.org!news.szaf.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!news.eyrie.org!jik4.kamens.us!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.misc,comp.databases
Subject: Re: Alternative To Microsoft Access
Date: Mon, 29 Apr 2024 08:05:12 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <v0nkbo$1kh74$1@dont-email.me>
References: <v0hu8c$5ttc$4@dont-email.me>
<jj8u2jlqud0fnm1nfmski7r0isd10gmt8b@4ax.com> <v0nc8t$1ikm0$2@dont-email.me>
<v0njsj$1ke54$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 29 Apr 2024 10:05:12 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="04215bbbe15e1cd8ac94ba1cee5d62b8";
logging-data="1721572"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/0bXs+8d4Lz6ic2xgJDmId"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:e6mgvoMrpCZJJ2Udm2w1ddDYisg=
 by: Lawrence D'Oliv - Mon, 29 Apr 2024 08:05 UTC

On Mon, 29 Apr 2024 09:26:50 +0200, Kyonshi wrote:

> On 4/29/2024 7:47 AM, Lawrence D'Oliveiro wrote:
>
>> I did have some LibreOffice Java stuff installed, so I did this
>>
>> dpkg -r liblibreoffice-java libreoffice-java-common
>> libreoffice-sdbc-hsqldb
>>
>> and my LibreOffice Base access still works fine.
>
> I think the Java part is actually the included database.

The “HSQLDB Embedded” option was still available.


computers / comp.os.linux.misc / Alternative To Microsoft Access

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor