Ver Mensaje Individual
  #6  
Antiguo 20-04-2010
wiwaedu wiwaedu is offline
Miembro
 
Registrado: ene 2007
Posts: 14
Reputación: 0
wiwaedu Va por buen camino
¿Seria correcto hacer esto?:

Código:
procedure TImpBL.Button1Click(Sender: TObject);
begin
ADOTable1.Active:= False;
with QCopy do
begin
Active := false;
SQL.Clear;
SQL.Text := 'INSERT INTO B(NumSet,Cantidad) VALUES("'+DBEdit1.Text+'",'+Edit1.Text+')';
ExecSQL;
end;
ADOTable1.Active := True;
end;
Responder Con Cita