I am trying to simply execute an sql query, but when I try to get an integer field, I get a Numeric Value out of range error.
SELECT OrderNumber, ClientCode, SalesAmount FROM TDATA WHERE OrderNumber = 'P12345'
SalesAmount is the numeric field, the statement works fine if I take out that field. The same error is encountered for other fields of the same type. Is the syntax wrong??