views:

2002

answers:

2

I am working in c# .net 2 (Visual Studio 2005 SP1) attempting to fill a dataset with the results from a select * from table from an Oracle10g database. The .net framework, IDE and database cannot be changed at this client site.

I'm connecting using the ODP.net provider the dll version is 2.102.2.20

When I run the fill command I get an Exception:

Arithmetic operation resulted in an overflow

Also if I attempt to view the offending column in the Visual Studio designer (Show Table Data) I get for every row for this column in the table. The code works perfectly if my query selects other columns with integers for example omitting this column.

The column in question looks fine when I view it in the database from Toad, data looks like:

919.742866695572

I need the precision as it's required for a monte carlo simulation.

If instead of using a data adapter to fill the datatable I use a datareader and call dataReader.getValue(columnIndex) I get the same error but if I call dataReader.GetOracleDecimal(columnIndex) then I get the result I am looking for, no error.

I would rather use data adapter and filling a dataset (note these are untyped datasets as I couldn't get autogenerated strongly typed datasets to work from an oracle db). I don't want to use datareader and walk through the results (pick out the column values) as I am trying to write this as a generic method to work for many scenarios regardless of number of columns, index of decimal columns that would require specific get calls by datatype.

Can anyone help? Can I use new versions of the ODP.net dlls to connect to the older Oracle10g database? am wondering if this will help.

Thanks

A: 

You can try the latest version of ODP.Net (11g). It is backwards compatible. I use it to connect to a 10g database just fine. I think it should work with VS 2005 too. For clickonce deployment, just add the dlls referenced by this question: What is the minimum client footprint required to connect C# to an Oracle database? An important note is that if you have the latest version of odp.net, all of the dlls are included in the install directory. You don't need to download instant client separately. Just search for them.

jle
Great am trying this on my computer will let you know how I get on.On the deployed machine do I need to install this as well? or I can just deploy my console app with newer version of Oracle.DataAccess.Dll ? it not I'd prefer to just deploy this app with all require dlls for oracle in my apps bin folder and not installation on the target deployed machine (a server), what is involved in this and which files are require?Thanks
m3ntat
You will want to Oracle Developer Tools for Visual Studio includes all of the dlls that you need. The only way to get it installed on client machine is either by installing full blown Oracle Client or using instant client (which I recommend). For instant client, you just need to find the .dlls (see http://stackoverflow.com/questions/70602/what-is-the-minimum-client-footprint-required-to-connect-c-to-an-oracle-database) for more information and add them to copy as content. This will ensure that they deploy properly.
jle
A: 

I posted this on the Oracle forums the answer is to use SafeTypeMapping

Answer here: oracle forum post

m3ntat