A class representing the Oracle object data type value.
For a list of all members of this type, see TOraObject members.
TOraObject = class(TDBObject);
TOraObject represents a value of the Oracle object data type. You can get the description of the object type using the ObjectType method. Use the AllocObject method to create an object of a certain type. To access the attribute value use AttrAsInteger, AttrAsString, etc. You can get a TOraObject object using TOraDataSet.GetObject method after fetching rows containing an array field. Also you can get it using the TOraParam.AsObject method.
var MyType : TOraType; MyObject : TOraObject; . . . MyType := TOraType.Create; MyType.Describe('SCOTT.PERSON'); MyObject := TOraObject.Create(Obj.ObjectType); MyObject.AttrAsString('Name') := 'Ja'; . . .
TSharedObject
TDBObject
TOraObject