Connect to Oracle DB from VB 2008 application without installing Oracle software? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:08:22Zhttp://stackoverflow.com/feeds/question/364101http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software3Connect to Oracle DB from VB 2008 application without installing Oracle software?Clint Davis2008-12-12T20:50:27Z2009-08-20T02:21:42Z
<pre><code>Imports System.Data.OleDb
Public Class Log
Private mConnectionString As String = "Provider=OraOLEDB.Oracle;Data Source=(DESCRIPTION=(CID=GTU_APP)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx)(PORT=1521)))(CONNECT_DATA=(SID=xxx)(SERVER=DEDICATED)));User Id=xxx;Password=xxx;"
Dim ds As New DataSet
Dim da As New OleDbDataAdapter
Dim dr As DataRow
Dim Connection As New OleDbConnection(mConnectionString)
Dim Command As OleDbCommand
goes on...
</code></pre>
<p>That's the code, and it works great on our development machines. We all have the Oracle providers installed on our machines. Now I tried using this code in an app on another machine that does not have the Oracle software installed and it doesn't work. </p>
<p>Now I know I can install the Oracle providers on these other machines and it will work. Problem with that is A) there are many of them and B) I'd have to go through our IT department and it would take six months for them to do it. So my question is, can I connect to this Oracle database from a machine without the Oracle providers installed? I thought Microsoft had it's own Oracle provider but it doesn't show up under System.Data. The .NET version is 3.5 if that helps. Any ideas? </p>
http://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software/364119#3641190Answer by MusiGenesis for Connect to Oracle DB from VB 2008 application without installing Oracle software?MusiGenesis2008-12-12T20:58:48Z2008-12-12T20:58:48Z<p>I'm pretty certain you have to install the Oracle provider in order for this to work. OleDb can easily connect to SQL Server and Access and so on, but only because these providers come pre-installed in Windows.</p>
<p>I think your only option (other than installing the Oracle provider on every machine) is to create a SQL Server "front" database that includes pass-through tables to each Oracle table you need, and then get your data from SQL Server instead of Oracle.</p>
<p>Actually, another option would be to have your client applications get their data from an intermediate web service instead of connecting directly to the database, but this would probably entail a major re-write.</p>
http://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software/364126#3641260Answer by sgwill for Connect to Oracle DB from VB 2008 application without installing Oracle software?sgwill2008-12-12T21:01:27Z2008-12-12T21:01:27Z<p>Would it be possible to find and include the Oracle DLLs with your app instead of installing them?</p>
http://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software/364133#3641331Answer by kanad for Connect to Oracle DB from VB 2008 application without installing Oracle software?kanad2008-12-12T21:04:04Z2008-12-12T21:04:04Z<p>The problem is actually you started a project without discussing the infrastructure needs with your company's IT/DBA team. This is not a technical problem but a process problem.</p>
<p>That being said here is a possible solution (although I haven't used personally).
<a href="http://devart.com/dotconnect/oracle/" rel="nofollow">http://devart.com/dotconnect/oracle/</a></p>
http://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software/364145#3641456Answer by Mark Brackett for Connect to Oracle DB from VB 2008 application without installing Oracle software?Mark Brackett2008-12-12T21:07:01Z2008-12-12T21:07:01Z<p>I've had fairly good luck with the <a href="http://www.oracle.com/technology/tech/oci/instantclient/index.html" rel="nofollow">Oracle Instant Client</a> and <a href="http://www.oracle.com/technology/tech/windows/odpnet/index.html" rel="nofollow">ODP.NET</a>, which is pretty much a straight XCOPY deploy (if you don't need ODBC).</p>
<p>IIRC, you do need to modify the PATH environment variable, but that's relatively painless - especially compared to the hoops Oracle used to make you jump through.</p>