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.

link|improve this question

38% accept rate
Hello, welcome to SO. I've edited your question to make sure it gets some answers as there's two close votes on it. If you aren't happy with the edits, feel free to roll it back and make your own. – Ninefingers Jan 28 '11 at 6:48
What sort of non-Oracle database ? Is it running on the same machine or over a network ? – Gary Myers Jan 28 '11 at 9:43
it is running over a network – suvitha Jan 28 '11 at 10:08
feedback

2 Answers

You use the exec sql connect statement in your C code:

EXEC SQL CONNECT :myUserId IDENTIFIED BY :myPassword;

If you want to connect to a non-Oracle database, you will probably have to use the at version of the command:

EXEC SQL CONNECT :myUserId IDENTIFIED BY :myPassword AT :myDbName;

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.

link|improve this answer
feedback

From the documentation available here and in more detail here it looks like you can embed a CONNECT statement directly in your code.

To quote the first article, a simplified connect statement would be:

EXEC SQL CONNECT { :user IDENTIFIED BY :oldpswd | :usr_psw }
   [[ AT { dbname | :host_variable }] USING :connect_string ]
      [ {ALTER AUTHORIZATION :newpswd  |  IN { SYSDBA | SYSOPER } MODE} ] ;
link|improve this answer
can expalin the fields in that connection statement? – suvitha Jan 28 '11 at 6:57
Certainly. See paxdiablo's answer for a simple method of connecting using host variables. The syntax above gives you more information, so for example you can connect to a non default database by specifying AT dbname where dbname is the identifier given to the database by Oracle. You can connect in operational (SYSOPER) mode by adding IN SYSOPER on to the end and as the dba using IN SYSDBA. For example. For more info, do check the first document link. – Ninefingers Jan 28 '11 at 7:09
feedback

Your Answer

 
or
required, but never shown

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