Delphi 6 with ADO + Oracle returns NUMBER with different precision, generating BCD overflow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:21:22Z http://stackoverflow.com/feeds/question/1145689 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1145689/delphi-6-with-ado-oracle-returns-number-with-different-precision-generating-bc 1 Delphi 6 with ADO + Oracle returns NUMBER with different precision, generating BCD overflow Pascal 2009-07-17T21:07:29Z 2009-11-20T02:00:03Z <p>Hello, <br> I'm having a problem with Delphi 6 + Oracle 10gR2 + ADO + ClientDataSet. Whenever I run a aggregate function on a field NUMBER(19,9), the resulting column returns a NUMBER datatype to Delphi, and on some machines it loads as a TBCDField with a precision of 38, and everything goes well, but on some machines it loads as a TBCDField with a precision of 255, and I get a BCD overflow on the field.<br> To replicate the problem, just create a table with a column NUMBER (19,9), and run a SELECT SUM(<i>column_name</i>) <i>column_name</i> FROM <i>table_name</i> GROUP BY <i>column_name</i>. Despite the fact that the column is a NUMBER(19,9), the resulting column will be a NUMBER with no precision defined. In Delphi, load the query into a ADOQuery, with a DataSetProvider linked to it and a ClientDataSet linked to the DataSetProvider. After I call the ClientDataSet.Open, on some machines I get a BCD overflow message on the NUMBER field, but in a lot of machines it works nice. <br> Why am I getting this 255 precision on some machines, when the midas.dll, ADO, server, user, oracle client are all the same on both machines? Any ideas? <br> Thanks</p> http://stackoverflow.com/questions/1145689/delphi-6-with-ado-oracle-returns-number-with-different-precision-generating-bc/1146043#1146043 0 Answer by Steve Broberg for Delphi 6 with ADO + Oracle returns NUMBER with different precision, generating BCD overflow Steve Broberg 2009-07-17T22:54:33Z 2009-07-17T22:54:33Z <p>I don't have any definitive answer for your, but are you positive you have the same versions of the client dlls on both machines? There may be other software installed that is interfering. Try running <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Windows Process Explorer</a> on the client machines and confirm that the dlls you think you are using are the ones that are actually being used by your client applications.</p>