Retrieval of OO objects. - Mailing list pgsql-general

From Chris Bitmead
Subject Retrieval of OO objects.
Date
Msg-id 3716EA0D.2D0DA368@bigfoot.com
Whole thread Raw
In response to Re: [GENERAL] Opening two databases at the same time?  (Thomas Good <tomg@admin.nrnet.org>)
Responses Re: [GENERAL] Retrieval of OO objects.  ("Oliver Elphick" <olly@lfix.co.uk>)
List pgsql-general
Is it possible in postgres to retrieve objects with differing fields,
like in an object database? Like if I have

CREATE TABLE aaa ( a text );

CREATE TABLE bbb ( b text ) inherits (aaa);

CREATE TABLE ccc ( c text ) inherits (aaa);

SELECT * from aaa*;

Is it possible to get the fields a and c returned on objects of type bbb
and ccc? This is what an object database would do automatically.

I ask this question both in terms of the C interface as well as the psql
terminal program.

pgsql-general by date:

Previous
From: Adam Haberlach
Date:
Subject: Re: [GENERAL] The WWW of PostgreSQL
Next
From: "K.T."
Date:
Subject: Re: [GENERAL] pg_dumpall troubles