I'm dumb.
create type person as object (
first_name varchar2(20),
last_name varchar2(20));
create table people of person;
How do I get a TOracleObject back from the people table? If I do a 'SELECT * FROM PEOPLE', the only (obvious) way to get an object back is with the ObjField, which of course won't work. I want the row as an object...
It's obvious that I can't find the right syntax. How do I retrieve a list of person objects from the people table?
create type person as object (
first_name varchar2(20),
last_name varchar2(20));
create table people of person;
How do I get a TOracleObject back from the people table? If I do a 'SELECT * FROM PEOPLE', the only (obvious) way to get an object back is with the ObjField, which of course won't work. I want the row as an object...
It's obvious that I can't find the right syntax. How do I retrieve a list of person objects from the people table?