setvariable on TOracleDataSet

hisac

Member
Hi there,

does anybody know why I've no access to the setvariable- and getvariable-function of my TOracleDataSet in my delphi 5 environment.

I've declared 2 variables in the datamodule.
In the datamodule everything works fine.

In the sourcecode I get access to any other (I hope so) function or property.
I'm using TOracle-Packages and there is no problem with the setvariable- and getvariable-function.

I'm trying the following:
dm.ds_MySource.Enabled := FALSE;
dm.ds_MySource.SetVariable('STR_START', 'A');
dm.ds_MySource.SetVariable('STR_END', 'Z');
dm.ds_MySource.Enabled := TRUE;

I get a deplhi-error like
"undefined member/label "

Any comments???

Thanks anyway!!
 
It seems to me that you are using a TDataSource instead of a TOralcleDataSet.

Could that be the case?

------------------
Marco Kalter
Allround Automations
 
Back
Top