Ver Mensaje Individual
  #2  
Antiguo 17-03-2008
Avatar de poliburro
[poliburro] poliburro is offline
Miembro Premium
 
Registrado: ago 2004
Ubicación: México D.F
Posts: 3.068
Reputación: 23
poliburro Va por buen camino
Código Delphi [-]
Var
 OP : TQuery;
Begin
  Try
     Try
       OP := TQuery.Create(Self);
       OP.Close;
       OP.SQL.Text :=  'Insert into Tabla(key, nombre) values(''001'', ''Luis'')';
       OP.ExecSQL;
     Finally
         Op.Free;
     End;
  Except
     On Error: Exception Do
        ShowMessage('Error: ' + Error.Message);
  End;
end;
__________________
Conoce mi blog http://www.edgartec.com
Responder Con Cita