i am using .net v.1.1.4322
also, i see a problem with the provider i use for connection. With oledbdrivers installed on my machine, can u help me why i get the error as:
TNS couldn't resolve service name.
this is my connection string:
using System.Data.OleDb;
...
OleDbConnection oracleConn = new OleDbConnection();
oracleConn.ConnectionString = "Provider=\"OraOLEDB.Oracle.1\";
User ID=scott;Password=tiger;
Data Source=yourSource;
Extended Properties="";
Persist Security Info=False";
oracleConn.Open();