I was wondering how to call a static method using TOracleObject. I wrapped a constructor for an Oracle object within a static function, as in:
STATIC FUNCTION Construct
RETURN CAnyItem IS
BEGIN
RETURN CAnyItem(1, 2, 3, 4, 5, 6, 7);
END;
The only way I know of...