Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle Data Adapter referencing with different versions

Re: Oracle Data Adapter referencing with different versions

From: jbl <jarmo.blomsterN0SPM_at_ccc.fi>
Date: Tue, 24 Jan 2006 07:24:07 GMT
Message-ID: <rCkBf.32$K27.23@read3.inet.fi>


I'm answering myself.

It seems that the solution I'm looking for is configuring the allpication settings.

It seems to me that setting following section to app.exe.config file solves the problem:

<runtime>

    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

        <dependentAssembly>

            <assemblyIdentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342" culture="neutral" />

                    <bindingRedirect oldVersion="10.1.0.400"
newVersion="10.2.0.100"/>

             </dependentAssembly>

    </assemblyBinding>

</runtime>

Now I have to take care of linking my application with version 10.1.0.400.

Still one problem exists: if there is a server that uses 10.1.0.200.

I think anyway that maybe it is better to upgrade that version to 10.1.0.400

//Jarmo Received on Tue Jan 24 2006 - 01:24:07 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US