IQ Driver - Oracle Connection Setup
My oracle instance uses a Service Name. I can't figure out how/where to input this information into the connection setup tool. Do I need to add something into the "Additional connection string options" box? For reference i've included an example of the connection string i am using in my application's web.config.
"Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = [IP Address])(PORT = [Port]))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = [Service Name])));User Id=[name];Password=[password];"
"Data Source=(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = [IP Address])(PORT = [Port]))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = [Service Name])));User Id=[name];Password=[password];"
Comments
You could try entering into 'Additional connection string options' as you suggest. Something like:
Service Name=foo
or
Data Source=foo
Or perhaps adding the service name after the server name:
MyServer/foo
If you a find a solution, let us know what works.
The details are in this Stack Overflow post.
Just ensure that you put "SERVICE NAME=xxx" in the "Additional connection string options", rather than (as it is in the tnsnames.ora file) "SERVICE_NAME=xxx". With that, the "Direct" connection mode selected, the name of the host, username and password, you will hopefully find it works.