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 |
A program to write a number of letters and numbers, such as counting and display
write a program to count the no of repaeted words in a line?
how can f be used for both float and double arguments in printf? Are not they different types?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
write a program that explain #define and # undef directive
Explain how do you determine whether to use a stream function or a low-level function?
Why we write conio h in c?
what is the use of a array in c
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What the advantages of using Unions?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".