how to connect oracle in C/C++.
Answers were Sorted based on User's Feedback
Answer / sujith
Please look in to the details of ProC from Oracle.
The kind of queries which u write in C/C++ code is called
embedded SQL.
I believe ProC is shipped with the enterprise version of
Oracle. I am not sure about the other sources.
Sujith
| Is This Answer Correct ? | 2 Yes | 5 No |
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
Is c dynamically typed?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
implement general tree using link list
What is a program flowchart and how does it help in writing a program?
How can I find out how much memory is available?
What are structural members?
What is the difference between macros and inline functions?
which will be first in c compiling ,linking or compiling ,debugging.
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?