Re: Writing most code in Stored Procedures

Поиск
Список
Период
Сортировка
От Mohd Kamal Bin Mustafa
Тема Re: Writing most code in Stored Procedures
Дата
Msg-id ed4b2db80708151923o77757774j470b131e4c67b671@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Writing most code in Stored Procedures  (Steve Manes <smanes@magpie.com>)
Список pgsql-general
On 8/16/07, Steve Manes <smanes@magpie.com> wrote:
> On 8/15/07, Rohit <rpk.general@gmail.com> wrote:
>
> Another is because I typically do my web application programming in PHP5
> but the offline scripts in Perl.  Both can call the same stored
> procedures so I don't have multiple copies of database code to maintain
> and debug.
I'm also thinking the same thing once before. Doing as much logic in
the database and at the application layer most of it would be just a
"SELECT .." call. It allows me to experiment with different kind of
langguage (PHP, Python, Ruby) without having to rewrite the business
logic of the application. But using this kind of approach make it hard
to debug and maintain. Changing simple thing would mean updating the
database schema and it would always frigthened me some silly mistake
can affect the integrity of the data. In the end, I slowly move the
logic out of the db and decided on one platform for the application
(PHP).

--
kamal, www.k4ml.com

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

Предыдущее
От: Trent Shipley
Дата:
Сообщение: Re: Blobs in Postgresql
Следующее
От: ptjm@interlog.com (Patrick TJ McPhee)
Дата:
Сообщение: Re: memory optimization