Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle Data Adapter referencing with different versions
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
![]() |
![]() |