Re: IF...THEN...ELSE on INSERT

Поиск
Список
Период
Сортировка
От Andrew McMillan
Тема Re: IF...THEN...ELSE on INSERT
Дата
Msg-id 1007782060.7485.16.camel@kant.mcmillan.net.nz
обсуждение исходный текст
Ответ на Re: IF...THEN...ELSE on INSERT  (Vincent AE Scott <pgsql-novice@codex.net>)
Список pgsql-novice
On Sat, 2001-12-08 at 02:13, Vincent AE Scott wrote:
>
> Thanks for that, and yes it does help somewhat, but it appears somewhat
> cumbersome to me.  It appears to me ( but i could be well out of whack )
> that the function is losely linked to the table.  If i change the table
> definition ( like adding an extra column ) do i have to modify the
> function aswell?
>
> Is there anyway i can just modify the behaviour of an insert statement
> to transparently do this for me.  That way at least the database clients
> dont have to implicitly know about this function/feature.  Does that
> make sense?

Yep, that does make sense.  What you are asking for is effectively an
'INSERT OR UPDATE <table> (<field list> ) VALUES( <value list> ) ...'
syntax.

This is being looked at in some areas ("CREATE OR REPLACE FUNCTION",
"CREATE OR REPLACE VIEW", ...) for 7.3, I believe.  Whether or not there
will be an "INSERT OR UPDATE ..." statement included in there I am not
sure.  I am pretty sure it has been proposed, and I know it would make
things easier for many programmers, myself included :-)

I think that it might be possible to write a function to do what you
want generically in 7.1 or later, but it would be complex.  PL/PGSQL
will let you PERFORM a query you have constructed as a string, and you
can pass a row to a function, so you could (perhaps) do something very
complicated and unmaintainable there.

You might be better with a more complex language like PL/Perl for
something along those lines, or with a C function.

Regards,
                    Andrew.
--
--------------------------------------------------------------------
Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/        PHYS: Level 2, 150-154 Willis St
DDI: +64(4)916-7201    MOB: +64(21)635-694    OFFICE: +64(4)499-2267


В списке pgsql-novice по дате отправления:

Предыдущее
От: "Josh Berkus"
Дата:
Сообщение: Re: pg_ctl stop
Следующее
От: Francisco Reyes
Дата:
Сообщение: Re: Disk space problem...