Re: ISAM to SQL

From: Merlin Moncure <mmoncure(at)gmail(dot)com>
To: John Mudd <johnbmudd(at)gmail(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: ISAM to SQL
Date: 2013-03-29 03:00:45
Message-ID: CAHyXU0wmswzy8Xv-Dcv7LKHBnvFTofZ2sWoeEnUioUp60FYZdg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Thu, Mar 28, 2013 at 9:47 PM, John Mudd <johnbmudd(at)gmail(dot)com> wrote:
>
> I see a few old messages referring to ISAM to SQL emulation.
>
> For example:
>
> http://www.postgresql.org/message-id/200402171616.i1HGG9u11474@candle.pha.pa.us
>
> Does anyone know of any actual source code to one of these projects? Any
> active projects?

I wrote an unfortunately closed source ISAM driver for postgresql for
COBOL (AcuCobol). It was not a too terribly difficult project --
Postgres has a couple of features that made it pretty easy, especially
advisory locks and row-wise comparison. Type conversion can be
difficult or complex depending on how far you want to take things and
how clean the API is that you will be hooking on the ISAM side. I
almost put together a C-ISAM driver a couple years back for a project
but it fell through.

merlin

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2013-03-29 07:05:00 Re: Enabling Checksums
Previous Message John Mudd 2013-03-29 02:47:55 ISAM to SQL