- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Oracle database connectivity using C or C++
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 02:47 AM
тАО06-17-2004 02:47 AM
Oracle database connectivity using C or C++
Can anyone tell me, how can I connect oracle database using C or C++ on HP-UNIX?. Is there any reference document or link? .
Thanks in advance.
Regards,
Vasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 12:15 PM
тАО06-17-2004 12:15 PM
Re: Oracle database connectivity using C or C++
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 01:29 PM
тАО06-17-2004 01:29 PM
Re: Oracle database connectivity using C or C++
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 02:25 PM
тАО06-17-2004 02:25 PM
Re: Oracle database connectivity using C or C++
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 04:55 PM
тАО06-17-2004 04:55 PM
Re: Oracle database connectivity using C or C++
I am not looking for pro C, looking for some kind of library through which we can connect to oracle database using C or C++.
Note: I had posted this question yesterday night, so I could not assign the points. Is there any otherway to assign the points?
Regards,
Vasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 05:36 PM
тАО06-17-2004 05:36 PM
Re: Oracle database connectivity using C or C++
Pro*C/C++, precompilers connect to oracle database using embedded sql statement connect.
Example:-
EXEC SQL CONNECT :uid IDENTIFIED BY :pwd;
SQLLDAGetCurrent(&lda);
EXEC SQL EXECUTE
BEGIN
------ END;
END-EXEC;
Oracle supports
├В┬╖ C, by means of the Oracle Call Interface (OCI), as described in the Oracle Call Interface Programmer's Guide
├В┬╖ C++, by means of the Pro*C/C++ precompiler, as described in the Pro*C/C++ Precompiler Programmer's Guide.
Demo programs are located in
$ORACLE_HOME/precomp/demo/proc directory.
I hope this helps
Indira
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-12-2007 11:45 AM
тАО01-12-2007 11:45 AM
Re: Oracle database connectivity using C or C++
write this sentence:
EXEC SQL CONNECT :uid IDENTIFIED BY :pwd;
?