Recent content by indyrk

  1. I

    controlling numeric rounding

    No luck with that! Thanks for your help though, I appreciate it. -Rob
  2. I

    controlling numeric rounding

    One thing about this query, the rounding only seems to happen inside the CASE statement. So if the query is: Select tmcomcred, baamount, baamount-tmcomcred, case when tmcomcred>0.00 then baamount-tmcomcred else 0.00 end from table the first subtraction gives a decimal result, the second...
  3. I

    controlling numeric rounding

    Thanks, Yes, I have tried wrapping the subtraction statement in a cast function, no change. The DB is Progress v9. -Rob
  4. I

    controlling numeric rounding

    Hi, I have a query where I am subtracting two numbers, and the result is always rounded, but I need it not to do that. The two data fields are defined in the database as numeric(17). My query looks like this: select tmccomcred, baamount, case when tmcomcred<>0 then baamount - tmcomcred else...
  5. I

    odbc error -219901

    Hello, I am trying to connect to a Progress database using the DataDirect 4.10 32 Bit Progress SQL92 v9.1E ODBC driver. I am getting an error: [datadirect][odbc progress driver]invalid attribute in connection string: description.[datadirect][odbc progress driver][progress]-219901 The...
Top