Recent content by SvenHeuer

  1. S

    TOracleEvent.Stop never returns

    I have the same since years. It happens very often with the instant client but using the "full featured" client does not help always. I spend a lot of time in this issue but found nothing. It is also on 11 G clients compiled with Delphi XE. Sven
  2. S

    TLOBLocator: LoadFromStream request

    One more request from my side :) I run also in this "brain problem" if I use lobs. Sven
  3. S

    Delphi2009

    Hi Marco, Thx for this good news.
  4. S

    Delphi2009

    Hi Marco, is there any schedule for this? Q4 2008 or 2009? Greetings Sven
  5. S

    4.0

    Hi Marco, the last days I had the "Assertion failed: RowIdAllocations=0" a lot of times. Can you say me, what the DOA is checking here and what is wrong?
  6. S

    Monitor SQL in application

    I think, he would like to embed the oracle monitor into an own application. (Yes, would be nice :) ) Greetings Sven
  7. S

    New 10g Instant Client support

    Any news (timeframe) to this topic? Greetings Sven
  8. S

    Cancel recordlog in cachedupdate

    Ok, i added a new procedure procedure TOracleDataset.CancelRecordUpdate; Var Log : TChangeLogItem; BM : TBookmark; begin inherited; if State in [dsEdit, dsInsert] then Cancel; bm := GetBookmark; Log := FindChangeLogByBookmark(PInteger(bm)^) as TChangeLogItem...
  9. S

    Cancel recordlog in cachedupdate

    Hi Marco, is it possible to cancel the change of only one record (after i scrolled to another record)? Something like this: DataSet.Cancel; bm := DataSet.GetBookmark; Log := DataSet.FindChangeLogByBookmark(PInteger(bm)^) as TChangeLogItem; DataSet.FreeBookmark(bm); Log.Cancel; I can't do...
  10. S

    Record is locked by another user

    No, this problem is solved. (at least on my system) If i have Lockimmediate and roRefreshBeforeEdit=false i also get an "Record has been changed" error. (and cachedUpdate=true) Setting roRefreshBeforeEdit=true and the error is gone Greetings Sven
  11. S

    Record is locked by another user

    Marco, may be this is the same problem as i described? Seeting refresh-option roBeforeEdit to true solved this problem. Is LockImmediate also on true? I suppose there is a problem with LockImmediate. Greetings Sven
  12. S

    4.0

    Marco, I found out, that in my mdi-application i had an "abort" in a OnCloseQuery event. Due this, the datamodule forms didn't close the datasets and the datamodules aren't freed. So doa tries to close all the dataset and throws the AV's. After removing the abort-command it's better, but still...
  13. S

    4.0

    Marco, i have some AV when shutting down the application. After LogOff The TOacledataSet.DataEvent is called and an av occured on inherited;. later... raise Exception.Create('Assertion failed: RowIdAllocations = 0'); Greetings Sven
  14. S

    4.0

    Great Job, our application (>600k lines of code) is still running without any problems ;-) . (ok, there are problems, but not due doa 8-) Update took 5 minutes. Guys: Your'e are great. Greetings Sven
  15. S

    Monitor problem

    Both versions
Back
Top