Subject Calling a stored procedure from C++
Author ritchie72nlnl
Hello,

Can anybody tell me how to call a Stored Procedure from within an
application?

According to the MSDN it should be easy:
Prepare the statement, should look like:
CString sQry = "{CALL stored-procedure name (parameter [,
parameter])}";

And then just call the SQLExec function of the CDatabase class.
However, FireBird raises the Exception, stating it doesn't know the
first token (CALL).

Is there an alternative way of invoking these procedures?

Thanks in Advance,
Richard