Recent content by Cool Bananas

  1. C

    Returning 64 bit integers from Oracle Package functions..

    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)...
  2. C

    Returning 64 bit integers from Oracle Package functions..

    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...
Back
Top