Re: CHECK vs BEFORE trigger

Поиск
Список
Период
Сортировка
От brew@theMode.com
Тема Re: CHECK vs BEFORE trigger
Дата
Msg-id Pine.BSF.4.58.0504221703150.87766@themode.com
обсуждение исходный текст
Ответ на CHECK vs BEFORE trigger  ("Keith Worthington" <keithw@narrowpathinc.com>)
Список pgsql-novice
Keith....

> I am about to create a new table that will store among other things two
> dimensions.  The user requires that the smaller of the two dimesions always be
> referred to as the width.
>
> As I see it I can either implement a CHECK constraint and handle the error or
> implement a BEFORE INSERT OR UPDATE trigger that checks the two values and
> switches them if necessary.

I like your trigger solution.  The CHECK would then be redundant and not
neccessary.

However, the CHECK with an error message might be a good solution if you
think the user has his data mixed up beyond just swapping the length and
width, maybe he jumped to the next row on one dimension and is about to
enter a fictitious situation and an error message might warn him so he
could correct the data.

I think it depends on your user situation and what possible mistakes they
might make.

brew

 ==========================================================================
                  Strange Brew   (brew@theMode.com)
  Check out my Stock Option Covered Call website  http://www.callpix.com
     and my Musician's Online Database Exchange http://www.TheMode.com
 ==========================================================================


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

Предыдущее
От: "Mike Oxford"
Дата:
Сообщение: Re: char or int vs varchar
Следующее
От: Michael Fuhr
Дата:
Сообщение: Re: SSL use