Re: Newbie HELP: Executing stored proc. from a C program
From: Amy Leone <amyleone_at_nyc.pipeline.com>
Date: 1995/11/02
Message-ID: <47ajgo$me7_at_pipe3.nyc.pipeline.com>#1/1
Date: 1995/11/02
Message-ID: <47ajgo$me7_at_pipe3.nyc.pipeline.com>#1/1
On Nov 01, 1995 20:07:57 in article <Newbie HELP: Executing stored proc. from a C program>, 'mll2454_at_tam2000.tamu.edu' wrote:
>However, I would like to call this procedure from a C program, and
>I have attempted to do so with the following code:
>
>userid = "Test";
>password = "tester";
>EXEC SQL EXECUTE ADDUSER USING :userid, :password;
Try :
EXEC SQL EXECUTE
BEGIN ADDUSER
(:USERID,
:PASSWORD);
END;
END-EXEC;
Amy
Received on Thu Nov 02 1995 - 00:00:00 CET