Negative numbers returned as positive
I am using ADO to connect to an Oracle 8.1.7 Release 3 database. There is a table that has a number field and some rows have negative numbers. If I try to execute the folowing statement:
select numberField
from testTable;
And I have, say 2 rows with -5 and -2, what is actually returned is 5 and 2.
Where is the minus signal?
Please help.