Обсуждение: Object Oriented features in PostgreSQL

Поиск
Список
Период
Сортировка

Object Oriented features in PostgreSQL

От
Mokos Péter
Дата:
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

От
Christian Pöcher
Дата:
----- 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