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...
This is code, and it works great on our development machines. We all have Oracle suppliers installed on our machines. Now I tried to use this code in the application on another computer on which Oracle software is not installed, and it does not work.
Now I know that I can install Oracle providers on these other machines, and it will work. The problem is that A) there are many, and B) I will need to go through our IT department, and this will take six months. So my question is: can I connect to this Oracle database from a computer without installed Oracle providers? I thought Microsoft has its own Oracle provider, but it does not appear in System.Data. The .NET version is 3.5 if that helps. Any ideas?
source share