Re: Simplified (a-la [G|N]DBM) DB access

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Alexandre <Xlex0x835(at)rambler(dot)ru>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Simplified (a-la [G|N]DBM) DB access
Date: 2005-04-19 14:16:27
Message-ID: 21224.1113920187@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Alexandre <Xlex0x835(at)rambler(dot)ru> writes:
> What I mean is: currently to get/put/delete/edit any data I have to
> compose an SQL query, which should be parsed, compiled, optimized and
> so on. While, in some tasks simple interface a-la [G|N]DBM should be
> more than enough, but it will be more preferable to store all data in
> one database, which support concurrent access, transactions, etc.

I seem to recall that someone has written an ISAM-style interface
library, which might be more or less what you are asking for. Check
the archives, and/or look at gborg and pgfoundry.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Harald Fuchs 2005-04-19 14:43:20 Finding FOREIGN KEY constraints via information_schema
Previous Message Tom Lane 2005-04-19 14:13:25 Re: Clarification