I created a type in oracle, and created cpp file with ott.
But it raise "OCI-2700 object does not exist or is marked for delete",
when I use new() the object in my application.
sql is:
create or replace type abc as object
{
name varchar2(16)
} not final
create table abc_tab of abc
cpp is:
abc* tmp = new (con, "abc_tab") abc();
I think the type is exist, why?
Please help me.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"oracle" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at http://groups.google.com/group/oracle
-~----------~----~----~----~------~----~------~--~---