Hi all,
I have received the error while executing the following lines which execute the stored procedure.
TestADOStoredProc.Connection.ConnectionString :=sConnectionString;
TestADOStoredProc.prepared;
TestADOStoredProc.Parameters.Refresh;
TestADOStoredProc.ProcedureName:='ExecAccount';
TestADOStoredProc.Parameters.ParamByName('Param1') .Value:='1';
TestADOStoredProc.Parameters.ParamByName('Param2') .Value:='2';
TestADOStoredProc.ExecProc();
any one help me is this correct way to execute the stored procedure