Thread: Object Oriented features in PostgreSQL

Object Oriented features in PostgreSQL

From
Mokos Péter
Date:
Hi!

I'm Peter, a student from Hungary, and I've got a question:

Can you tell me what are the Object oriented features of the program,
and what are the main expansion plans about this topic?

I would be gratefull for your answer:

Peter Mokos




Re: Object Oriented features in PostgreSQL

From
Christian Pöcher
Date:
----- Original Message -----
From: "Mokos Péter" <mokos.peti@freemail.hu>
To: <pgsql-novice@postgresql.org>
Sent: Tuesday, March 23, 2004 1:05 PM
Subject: [NOVICE] Object Oriented features in PostgreSQL


> Can you tell me what are the Object oriented features of the program,
> and what are the main expansion plans about this topic?

You might want to check inheritance of parent tables. You can do this by
using
CREATE TABLE childtable (...) INHERITS (parenttable);

chris