Hello,
I programmed a function and i want to include it in a stored procedure.
I declared my output data as a string
But i have an error with szOutputData.
Do u have any idea or a tutorial to learn how to programm input/output in extended stored procedure?
Thanks.
I programmed a function and i want to include it in a stored procedure.
Code:
string EncryptString(const char *instr, const char *passPhrase);
I declared my output data as a string
Code:
string szOutputData;
...
szOutputData = EncryptString((const char*)pbData, pass);
srv_paramsetoutput(pSrvProc, 2, szOutputData, sizeof(string), FALSE);
But i have an error with szOutputData.
Do u have any idea or a tutorial to learn how to programm input/output in extended stored procedure?
Thanks.