Undeclared identifier:'otString'

Koen

Member
hello,

I'm new to this product and now i'm going into more specific futures like declarevariable,
i'm getting this error:
undeclared indentifier : 'otString'
Allthough the second parameter of integer you give a constant (otstring,otinteger,..)
i think otString must be defined somewhere by you, but i don't know what i'm missing.

thanks in advance for some help

here is some code:
With dataTpa8.oradsTp do begin
If active then CLose;
sql.clear;
sql.add('select * from rn.persons....');
clearvariables;
declarevariable(':nr',otString);
Setvariable(':nr',xxx);
open;
end;

Koen Van den Broucke
kvandenbroucke@cibg.irisnet.be
 
The otXXX constants are defined in the Oracle unit. Add it to the uses clause of this unit to fix the problem.

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