Ver Mensaje Individual
  #4  
Antiguo 22-09-2004
paren paren is offline
Miembro
 
Registrado: jul 2004
Ubicación: Tijuana, B. C. Mexico
Posts: 18
Reputación: 0
paren Va por buen camino
Exclamation Ayuda Interbase

fijate que ya cheque bien la ayuda de interbase, y encontre esto:

Código Delphi [-]
 The following procedure illustrates how to apply a dataset’s 
 cached updates to a database in response to a button click:
 
 procedure TForm1.ApplyButtonClick(Sender: TObject);
 begin
   with CustomerQuery do
   begin
   IBDatabase1.Open;
   IBTransaction1.StartTransaction;
   Table1.Insert;
   Table1.FieldByName('QUANTITY').AsInteger := StrToIn(Edit1.Text);
   Table1.Post;
   IBTransaction1.Commit;
   end;
 end;
 
 In the above example, you could substitute Rollback or RollbackRetaining
 (an InterBase 6 feature) for Commit.

Es a lo que te referias verdad?
lo voy a probar a ver si así me funciona
gracias

Última edición por paren fecha: 23-09-2004 a las 17:44:29.
Responder Con Cita