Re: sending mail from Postgres

Поиск
Список
Период
Сортировка
От Tony Caduto
Тема Re: sending mail from Postgres
Дата
Msg-id 43B317DF.6060400@amsoftwaredesign.com
обсуждение исходный текст
Ответ на Re: sending mail from Postgres  (Tino Wildenhain <tino@wildenhain.de>)
Список pgsql-general
Yep, we try to keep all the sql in functions/procedures as it makes
updates a lot easier and keeps the business logic seperate from the
client application.
We use native compiled front ends (Delphi) for windows and Lazarus for
everything else.  When you keep everything in a function/proc it makes
it a piece of cake to tweak the business logic or update it from a dev box.

I know a lot of coders who use PHP etc put the sql right in the scripts
and that is fine since you can update it without a recompile.

If you catch the errors in you functions and recover from them you won't
need to roll anything back, you would just do a commit.

Later,

Tony


> Actually not. There are several reasons why a transaction can
> abort - do you cover all your queries in functions?
> This would be a little bit unusual, to say at least.
> Every query can fail. Its useless to do error
> catching in your app if the server actually rolled back
> due to an error and yet sent the mail :-)
>
> Just curious, what framework do you use for your frontend
> applications?
>
> Have a nice day
> Tino
>


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

Предыдущее
От: Chris Travers
Дата:
Сообщение: Re: FW: Re[2]: new beginner to postgresql. Looking at
Следующее
От: Trent Shipley
Дата:
Сообщение: Re: WAL logs multiplexing?