Ver Mensaje Individual
  #7  
Antiguo 10-12-2004
marcost marcost is offline
Registrado
 
Registrado: abr 2004
Posts: 9
Reputación: 0
marcost Va por buen camino
Tambien puedes parametrizar la consulta

Código:
with TADOQuery.Create (Self) do 
begin
   SQL.Add ('DELETE FROM AGENDA WHERE Nombre = :Nombre'); 
   Parameters.ParamByName ('Nombre').Value := VariableNombre;
   ExecSQL;
 end;
Suerte
Responder Con Cita