You should be able to connect to your database using one of the following connection strings:
Driver={Microsoft ODBC for Oracle};Server=ServerAddress;Uid=Username;Pwd=Password;
Driver={Microsoft ODBC Driver for Oracle};ConnectString=OracleServer.world;Uid=Username;Pwd=Password;
You can also use DSN to connect to your database:
Data Source=DSNNAME;User Id=Username;Password=Password;Integrated Security=no;
Kailash