Ver Mensaje Individual
  #16  
Antiguo 04-07-2014
maxi915 maxi915 is offline
Miembro
NULL
 
Registrado: jul 2011
Posts: 63
Reputación: 13
maxi915 Va por buen camino
Este es mi codigo y me tira error parametro fechaInscripcion not found....

Código Delphi [-]
procedure actualizarFechaPago(Queryclientes:TADOQuery; id_cliente:integer; fecha:string);
Begin
   with Queryclientes do
    begin
     Close;
     sql.clear;
     SQL.Add('UPDATE Clientes SET fechaInscripcion = :fecha');
    SQL.Add('WHERE ID_Cliente = :id_cliente');
    Parameters.ParamByName('fechainscripcion').Value:= fecha;
    ExecSQL;
     ExecSQL;
    end;
end;
Responder Con Cita