Re: [ADMIN] ugly name clash

From: Sarah Officer <officers(at)aries(dot)tucson(dot)saic(dot)com>
To: Sarah Officer <SARAH(dot)M(dot)OFFICER(at)saic(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: [ADMIN] ugly name clash
Date: 2000-01-27 16:02:02
Message-ID: 38906BFA.22CFAB39@aries.tucson.saic.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

When I examine the Oracle and Postgres sqlca.h files, I notice that
they define the same structure. Both structures have the same
element names, though Oracle has a few additional names that my
program didn't access. With one exception, the elements are the
same sizes. The major difference, which caused my program to fail
to link, is that Oracle instantiates the object and Postgres does
not.

I have solved my problem, but I'm curious about the similarity
between the two files. Is "sqlca" some standard SQL object that
every SQL compatible relational database uses? How did Postgres &
Oracle manage to come up with identical member names? Was it
designed for compatibility between the two systems?

Sarah
officers(at)aries(dot)tucson(dot)saic(dot)com

I wrote:
>
> I am porting a system from Oracle to Postgres. At this time, both
> databases are installed. I will probably arrange the software so
> that I can use an environment variable to specify which database
> should be used. I have had problems with an include file name clash
> between postgres & oracle: sqlca.h. Both include files define a
> struct called sqlca, an unusual coincidence.
>
> Is there some way to avoid the name clash without having to put
> postgres in a special installation location that isn't in my path
> when I compile with oracle? Perhaps include files could all go into
> a pg subdirectory so that the user could include <pg/sqlca.h>
> instead of just <sqlca.h>, and that would differentiate? Systems
> that use an include subdirectory don't seem to have as many name
> clash problems.
>
> When I want to link to postgres, I can easily turn off the oracle
> copy because it IS installed in a nonstandard directory (I had no
> choice--this is not a benefit). But I would prefer to put all in
> one area and use <oracle/sqlca.h> or <pg/sqlca.h> to distinguish
> between them. How about it?
>
> Sarah Officer
> officers(at)aries(dot)tucson(dot)saic(dot)com
>
> ************

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Aaron Walker 2000-01-27 16:04:01
Previous Message Roberto Costa 2000-01-27 13:06:26 Problem about initdb

Browse pgsql-general by date

  From Date Subject
Next Message Moray McConnachie 2000-01-27 16:19:19 Re: [GENERAL] Backup, Vacuume scheduling tips?
Previous Message Nicolas Huillard 2000-01-27 12:37:08 Problem with SELECT on large negative INT4