I need to know how to reterieve stored procedured value in a variable in VC++ application.
My database is Oracle & connectivity is through ODBC.
The procedure is as such
create or replace procedure serial(accountid varchar2, total number)
is
begin
select count(*) into total where account_no=accountid;
end;
I want to access this value of total returned by stored procedure in a variable in VC++