Recent content by Shane

  1. S

    Sessions Questions.

    Hi, Can someone explain to me in english what happens inside a transaction, if you are creating and destroying TOracledatasets that are updating records on the fly. Example Session.Start; try for 1 := 1 to 1000 do begin CreateTOracledataset; InsertRecord...
  2. S

    Record has been changed by another user

    Hi Marco, I am getting the same problem. First time I edit and post using a TOracleDataSet it is OK, but after that I keep getting the error 'Record has been changed by another user.' I am using Delphi 6 (Build 6.240) Update Pack 2 I have the Direct Oracle Access 4.0.1 installed. Thanks Shane
  3. S

    Movement to another record after ApplyUpdates

    Hi, The code is shown below. It is just behind a button. dmItemMaint.TestItemQRY.DisableControls; try with dmItemMaint.TestItemQRY do begin Edit; FieldByname('Item_Archived').AsDateTime := now; Post; end...
  4. S

    Movement to another record after ApplyUpdates

    Hi, I have just started using the DAO component set and cannot work out why the when I apply the updates, the query seems to refresh and move to a different record. If I do not execute the ApplyUpdates shown below, the the post works, and there is no movement in the data aware grid that I am...
Back
Top