As the title says, how do I connect to a given database in Oracle's Pro C? i dont want the connection for oracle database but for some other database.
feedback
|
|
You use the
If you want to connect to a non-Oracle database, you will probably have to use the
and set up a database link in Oracle so that it can pass requests through to the other DBMS. DBMS' like DB2 provide transparent gateways which can give you this facility without having to go through ODBC. It depends on which DBMS you're targeting as to how you'd go about setting this up. | ||||
|
feedback
|
|
From the documentation available here and in more detail here it looks like you can embed a To quote the first article, a simplified connect statement would be:
| |||||
feedback
|