In ESQL/ORACLE we can call procedure BY
EXEC SQL CALL procedure_name(:tr_1,:tr_2,....);
If you can tell me how can i call that procedure using a C structure test1 which is
Struct testpr
{
int tr_1;
int tr_2;
.......
};
struct testpr test1;
instead of (:tr_1,:tr_2,....), that can also be helpful.