Rocksolid Light

News from da outaworlds

mail  files  register  groups  login

Message-ID:  

BOFH excuse #370: Virus due to computers having unsafe sex.


comp / comp.os.linux.misc / Re: Alternative To Microsoft Access

SubjectAuthor
* Re: Alternative To Microsoft AccessKyonshi
`* Re: Alternative To Microsoft AccessLawrence D'Oliveiro
 `- Re: Alternative To Microsoft AccessKyonshi

1
Subject: Re: Alternative To Microsoft Access
From: Kyonshi
Newsgroups: comp.os.linux.misc, comp.databases
Organization: A noiseless patient Spider
Date: Sat, 27 Apr 2024 19:44 UTC
References: 1
Path: 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
View all headers

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

Subject: Re: Alternative To Microsoft Access
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.misc, comp.databases
Organization: A noiseless patient Spider
Date: Sat, 27 Apr 2024 22:57 UTC
References: 1 2
Path: 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=
View all headers

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.

Subject: Re: Alternative To Microsoft Access
From: Kyonshi
Newsgroups: comp.os.linux.misc, comp.databases
Organization: A noiseless patient Spider
Date: Sun, 28 Apr 2024 15:58 UTC
References: 1 2 3
Path: 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>
View all headers

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

1

rocksolid light 0.9.8
clearnet tor