Home » Developer & Programmer » Precompilers, OCI & OCCI » call obj function from OCI
call obj function from OCI [message #188331] Fri, 18 August 2006 01:52
nvd077
Messages: 6
Registered: July 2006
Junior Member
Hi all,

In Oracle, i have an object:
PL/SQL code:

create or replace TYPE coordinates AS OBJECT
(
x NUMBER,
y NUMBER,
member procedure donothing
)
/
create or replace TYPE Body coordinates AS
member procedure donothing
as
begin
self.x := 11;
return;
end;
end;
/

And my question is how can i write a oci program to call procedure donothing of coordinates object?
if yes, please give me a sample?

Best regards,
Dung Nguyen
Previous Topic: proc help?
Next Topic: Does the oracle 10.2.0 supports OCI 7 ?
Goto Forum:
  


Current Time: Thu Mar 28 17:21:40 CDT 2024