<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Oracle database connectivity using C or C++ in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308125#M761835</link>
    <description>Thanks for your replies.&lt;BR /&gt;&lt;BR /&gt;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++.&lt;BR /&gt;&lt;BR /&gt;Note: I had posted this question yesterday night, so I could not assign the points.  Is there any otherway to assign the points?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vasu</description>
    <pubDate>Thu, 17 Jun 2004 23:55:00 GMT</pubDate>
    <dc:creator>Vasudevan MV</dc:creator>
    <dc:date>2004-06-17T23:55:00Z</dc:date>
    <item>
      <title>Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308121#M761831</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can anyone tell me, how can I connect oracle database using C or C++ on HP-UNIX?. Is there any reference document or link? .&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;Regards,&lt;BR /&gt;Vasu</description>
      <pubDate>Thu, 17 Jun 2004 09:47:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308121#M761831</guid>
      <dc:creator>Vasudevan MV</dc:creator>
      <dc:date>2004-06-17T09:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308122#M761832</link>
      <description>Are u looking PRO*C or something ?</description>
      <pubDate>Thu, 17 Jun 2004 19:15:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308122#M761832</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-06-17T19:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308123#M761833</link>
      <description>While at a very limited level you could use popen() or system() to execute a sql script and capture the output, the real method is to use Oracle's ProC that will allow you to embed SQL statements inside your C or C++ code.</description>
      <pubDate>Thu, 17 Jun 2004 20:29:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308123#M761833</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-06-17T20:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308124#M761834</link>
      <description>Agreed we used ProC here to build our application and connect to oracle database.</description>
      <pubDate>Thu, 17 Jun 2004 21:25:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308124#M761834</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2004-06-17T21:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308125#M761835</link>
      <description>Thanks for your replies.&lt;BR /&gt;&lt;BR /&gt;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++.&lt;BR /&gt;&lt;BR /&gt;Note: I had posted this question yesterday night, so I could not assign the points.  Is there any otherway to assign the points?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vasu</description>
      <pubDate>Thu, 17 Jun 2004 23:55:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308125#M761835</guid>
      <dc:creator>Vasudevan MV</dc:creator>
      <dc:date>2004-06-17T23:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308126#M761836</link>
      <description>Hi Vasu,&lt;BR /&gt;&lt;BR /&gt;Pro*C/C++, precompilers connect to oracle database using embedded sql statement connect.&lt;BR /&gt;&lt;BR /&gt;Example:-&lt;BR /&gt;&lt;BR /&gt;EXEC SQL CONNECT :uid IDENTIFIED BY :pwd; &lt;BR /&gt;&lt;BR /&gt;        SQLLDAGetCurrent(&amp;amp;lda); &lt;BR /&gt; &lt;BR /&gt;        EXEC SQL EXECUTE &lt;BR /&gt;          BEGIN &lt;BR /&gt;            ------          END; &lt;BR /&gt;        END-EXEC; &lt;BR /&gt;&lt;BR /&gt;Oracle supports &lt;BR /&gt;Â· C, by means of the Oracle Call Interface (OCI), as described in the Oracle Call Interface Programmer's Guide &lt;BR /&gt;&lt;BR /&gt;Â· C++, by means of the Pro*C/C++ precompiler, as described in the Pro*C/C++ Precompiler Programmer's Guide.&lt;BR /&gt;&lt;BR /&gt;Demo programs are located in  &lt;BR /&gt;$ORACLE_HOME/precomp/demo/proc directory.&lt;BR /&gt;&lt;BR /&gt;I hope this helps&lt;BR /&gt;&lt;BR /&gt;Indira</description>
      <pubDate>Fri, 18 Jun 2004 00:36:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308126#M761836</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2004-06-18T00:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle database connectivity using C or C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308127#M761837</link>
      <description>If I want to connect to the Oracle Database which is installed in different host, how can I  &lt;BR /&gt;write this sentence:&lt;BR /&gt;   EXEC SQL CONNECT :uid IDENTIFIED BY :pwd; &lt;BR /&gt;?</description>
      <pubDate>Fri, 12 Jan 2007 19:45:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-connectivity-using-c-or-c/m-p/3308127#M761837</guid>
      <dc:creator>Blueao</dc:creator>
      <dc:date>2007-01-12T19:45:16Z</dc:date>
    </item>
  </channel>
</rss>

