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
|
|
|