I'm using DOA 4.0.7.1 with CodeGear Delphi 2007 for Win32 (v11.0.2804.9245).
My TOracleDataSet's SQL looks like this:
SELECT * FROM refunds_mv
WHERE loginfo_insdate BETWEEN TRUNC
p_range_start) AND TRUNC
p_range_end)
ORDER BY loginfo_insdate ASC
The loginfo_insdate column is datatype DATE so I have declared my two variables
p_range_start and
_range_end) as type 'Date' in the DOA Variables Editor window. However, when I try and specify a value for these variables I always receive the error 'Error converting value' when the 'Value' edit box loses focus. I've tried entering '21-Oct-2007', '21-10-2007', '21/10/2007', and a few variations on these, but the 'Error converting value' error always occurs.
The odd thing is that I've managed to set the variables in the past, as when I open the DOA Variables Editor window both variables have a value (in the format 'dd-Mon-yyyy'). However, if I overtype the existing values (even with exactly the same as what's already there) the 'Error converting value' error occurs!
How therefore do I specify the values for data variables?
Kind regards,
Neil Garside
My TOracleDataSet's SQL looks like this:
SELECT * FROM refunds_mv
WHERE loginfo_insdate BETWEEN TRUNC


ORDER BY loginfo_insdate ASC
The loginfo_insdate column is datatype DATE so I have declared my two variables


The odd thing is that I've managed to set the variables in the past, as when I open the DOA Variables Editor window both variables have a value (in the format 'dd-Mon-yyyy'). However, if I overtype the existing values (even with exactly the same as what's already there) the 'Error converting value' error occurs!
How therefore do I specify the values for data variables?
Kind regards,
Neil Garside