I need to open a C program file with parameters from a PL/SQL program. How could I do this?
For example this is my C program main:
main(argc, argv)
int argc;
char *argv[];
{ *** code typing using parameters ***
}
Is there a way to convert C program in a external procedure using PL/SQL or Is ther a way to make a dll that C program to using in PL/SQL like a function?
thanks in advance
For example this is my C program main:
main(argc, argv)
int argc;
char *argv[];
{ *** code typing using parameters ***
}
Is there a way to convert C program in a external procedure using PL/SQL or Is ther a way to make a dll that C program to using in PL/SQL like a function?
thanks in advance