From: | "Thomas Holschen" <Thomas(dot)Holschen(at)hela-food(dot)de> |
---|---|
To: | <pgsql-odbc(at)postgresql(dot)org> |
Subject: | Antw: Obtain Serial Value |
Date: | 2006-02-08 16:37:40 |
Message-ID: | 43EA2C64.DB7B.0033.1@helafood.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-odbc |
.. or use a "stored procedure" aka function...
CREATE OR REPLACE FUNCTION hela_add_programm(pm_programmname
"varchar")
RETURNS int4 AS
$BODY$ declare NewProgrammID integer;
Begin
select into NewProgrammID nextval('programm_idprogramm_seq');
Insert Into programm(idprogramm,programmname) values
(NewProgrammID,pm_Programmname);
Return NewProgrammID;
end;
$BODY$
LANGUAGE 'plpgsql' VOLATILE;
--
_____________________________________________
Hela Gewürzwerk Hermann Laue GmbH & Co.KG
EDV
Thomas Holschen
Beimoorweg 11
22926 Ahrensburg
Tel. : +49 4102/496-381
http://www.hela-food.de
_____________________________________________
>>> "Sistemas C.M.P." <sistemascmp(at)redynet4(dot)com(dot)ar> schrieb am
Mittwoch, 8. Februar
2006 um 15:03 in Nachricht
<005601c62cb8$606b57d0$1601a8c0(at)pcsistemas>:
> I am using VB6+ADO+ODBC with pgSQL.
> I need to obtain the value of a serial field (autogenerated)
inmediatly
> after I do a INSERT query. How can I do?
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn
Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben,
informieren Sie bitte den Absender und löschen Sie diese E-Mail. Das unerlaubte
Kopieren sowie die unbefugte Weitergabe dieser E-Mail ist nicht gestattet. Aus
Rechts- und Sicherheitsgründen ist die in dieser E-Mail gegebene Information nicht
rechtsverbindlich.
This e-mail contains confidential and/or privileged information. If you are not the
intended addressee or have received this e-mail in error please notify the sender and
delete this e-mail. Any unauthorized copying, disclosure or distribution of the material
in this e-mail is strictly forbidden. Due to legal and security reasons the information
contained in this e-mail is not legally binding.
From | Date | Subject | |
---|---|---|---|
Next Message | Antoine | 2006-02-08 18:22:23 | odbc noob question - setting Declare/Fetch in the connection string? |
Previous Message | Tim Clarke | 2006-02-08 16:34:49 | LATIN1/9 conversion.... |