>while(1)
>{
>EXEC SQL FETCH IN c_movie INTO :movie_title;
> printf("%s\n",movie_title);
> movie_title = NULL;
>}
>
> free (movie_title);
As a side note, you should free movie_title each time, not just set it
to NULL if you us
Jasbinder Bali wrote:
Hi
Can anyone help me with the usage of ECPG??
Like how to go about it, what all header files to include in my C file
and other things that i need to give due considerations before using ECPG
~Jas
see /src/interfaces/ecpg ( test has several examples )
--
> Hi
> Can anyone help me with the usage of ECPG??
> Like how to go about it, what all header files to include in my C file
> and other things that i need to give due considerations before using ECPG
Sorry, I don't really know. I've never used it. But I can try to take a guess
from 2 minutes I
s