Stored Procedures

Поиск
Список
Период
Сортировка
От bugbug@shaw.ca
Тема Stored Procedures
Дата
Msg-id beab9be333.be333beab9@shaw.ca
обсуждение исходный текст
Ответы Re: Stored Procedures  (Josh Berkus <josh@agliodbs.com>)
Re: Stored Procedures  (Steve Crawford <scrawford@pinpointresearch.com>)
Список pgsql-novice
Hi Im new to postgre...and Im trying to make the leap from ms sql(was kinda new there too! )

How do I implement ms sql style stored procedures in postgre ? I have ms sql stored procedures like the following to
insertdata into a db that is called from a web form: 

CREATE PROCEDURE pr_Wellogs_Insert
 @iWELL_NUM int = NULL,
 @sOWNER nvarchar(60) = NULL,
 @siWELL_LOT smallint = NULL,
 @stFrom smallint = NULL,
 @stTO smallint = NULL

AS

INSERT WELLOGS
(
 [WELL_NUM],
 [OWNER],
 [WELL_LOT]
)
VALUES
(
 @iWELL_NUM,
 @sOWNER,
 @siWELL_LOT

if (@stFrom <> ' ')
begin insert stratigraphy3
(
 [well_num],
 [from],
 [to]
)
values
(
 @iWELL_NUM,
 @stFrom,
 @stTO
)
end
return

------
In pgadmin I cant even find anything called stored procedures. Also...how do I implement @@identity in postgre ?

Thanks!
Dennis


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

Предыдущее
От: Don Patou
Дата:
Сообщение: looking for a script to compare databases
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Stored Procedures