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 |
Explain the array representation of a binary tree in C.
What is the heap?
The differences between Windows XP and Windows Visa
Explain the difference between malloc() and calloc() in c?
write a program to create a sparse matrix using dynamic memory allocation.
What is identifiers in c with examples?
What is structure padding and packing in c?
Differentiate call by value and call by reference?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What are the parts of c program?