out-parameter TOraPackage parString

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
edvkdgealp
Posts: 2
Joined: Thu 16 Jun 2016 09:49

out-parameter TOraPackage parString

Post by edvkdgealp » Thu 16 Jun 2016 10:56

Hi guys,

I'm using Delphi XE5 with Firemonkey for Android and I tried to write a value into a string variable by using it as an out-parameter:
e.g. (in Oracle): function F_function(vWarning out varchar2) return number;
(in Delphi): pkgPackage: TOraPackage;
...
pkgPackage.CallIntegerFunction('F_function', [parString]);
vWarning := pkgPackage.GetParameter(1);

Now my question:
Is there anything like parString (I've used that in Delphi 2006) I could use here?

Thanks in advance

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: out-parameter TOraPackage parString

Post by AlexP » Mon 20 Jun 2016 09:39

Hello,

We do not have such methods and constants, most likely you are using DOA. Please refer to their support regarding the issue.

edvkdgealp
Posts: 2
Joined: Thu 16 Jun 2016 09:49

Re: out-parameter TOraPackage parString

Post by edvkdgealp » Tue 21 Jun 2016 08:29

Hello Alex,

thanks for your response, today I figured out a way where i don't need this anymore.
Was just curious since it might come in handy in the future.

Have a nice day :wink:

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: out-parameter TOraPackage parString

Post by AlexP » Tue 21 Jun 2016 09:19

You are welcome. Feel free to contact us if you have any further questions.

Post Reply