vote up 0 vote down star
1

Does anyone know the OCI connection string used for the dbname parameter in the function OCILogon() for the oracle 10g C API ?

I know you can specify the tnsnames.ora entry for the service, but does it have the ability to take something like: oci:connect:myserver.com:1521/myservicename ?

flag

1 Answer

vote up 0 vote down check

You may be able to specify dbname as follows (without tnsnames.ora):

(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyOracleSID)))

link|flag
fyi I was able to get it working. thanks again – Signal9 Feb 13 at 1:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.