Hello,
Ah thank you. So internally all the fields are retrieved as strings (and then just converted to the requested type?)? I've tested it out and that works! But as you mention, it's not ideal.. we're regularly regenerating the Delphi files as the packages are updated (system in development)...
Hello,
I am having trouble returning large integer values from Oracle package functions using direct oracle access and the package wizard.
For example, I made this test:
procedure Test
(
Param1 out Integer
) is
begin
Param1 := 9223372036854775808;
end Test;
The package wizard interprets...