When a C program is written using Embedded SQL, (eg: lets assume that a table is created with values inserted), how it gets executed in the backend before displaying the output table in the frontend? Help is appreciated...!
How embedded SQL program in C gets executed as in the backend?
84 views Asked by Humaira At
1
As we have directives like #include, #define for a C preprocessor, we have few directives for SQL embedded preprocessor like:
EXEC SQL begin declare section
andEXEC SQL end declare section
Here, the SQL embedded preprocessor conversion is shown below:-
This is just to give an idea of how embedded SQL works. For more detailed presentation, you may refer to Oracle-8 Embedded SQL