Assigns a command that calls stored procedure specified by Name to the SQL property.
procedure CreateProcCall(const Name: string);
Call the CreateProcCall method to assign a command that calls stored procedure specified by Name to the SQL property. This procedure also retrieves information about parameters of the procedure from server. After calling CreateProcCall you can assign parameter values of the stored procedure using, for example, TCustomDASQL.Params or ParamByName, and then execute it with the TCustomDASQL.Execute method.