Ver Mensaje Individual
  #4  
Antiguo 25-05-2005
Avatar de Juanito-Kun
Juanito-Kun Juanito-Kun is offline
Miembro
 
Registrado: abr 2005
Ubicación: Merida, Yucatan
Posts: 65
Reputación: 20
Juanito-Kun Va por buen camino
Talking Cambio de Stored Procedure

Ok, lo hice con el with.. quedo asi:

with ADOStoredProc2 do
begin
Parameters.Clear;
ProcedureName:=('ActualizarGru;1');
Parameters.ParamValues['@ID']:=StrToInt(Edit1.Text);
Parameters.ParamValues['@Grado']:=Edit2.Text;
Parameters.ParamValues['@Grupo']:=Edit3.Text;
Prepared:=True;
ExecProc;
end;

pero me sigue marcando el mismo error, que no encuentra los parametros...
Responder Con Cita