I want to call a PL/SQL stored procedure from Pro*C which takes an array parameter (table of integer). All the documentation on the Oracle site assumed you are using a static ...
Hello! I have a structure defined as follows: struct info { int num; char* d; }; This structure is defined on both the client and the server sides of the program identically. When the client starts, I know how many bytes the char* will need to be. So on the client side I say: struct info i; i.d = (char*)(malloc(sizeof(char) * ...
>I understand that, but the user has to enter the size of the array, and in a different function than main. Then use a pointer to modify the memory in the variables in main(). Or if you can, return the value that the user entered in the function. >Also, what would the receiving functions look like in your example? They'd look ...