Recent content by matthias

  1. M

    Memory leak in Session on continues connect and disconnect

    Hi Marco, we are also still facing memory leaks on continous connects / disconnects. I already followed the other thread but it didn't help cause we're using OCI 9.2.0.1. Which patch set would you recommend? Do have good experiences with one of them? kindly regards, Matt recommend? Currently...
  2. M

    Session Pooling and RollbackOnDisconnect

    We've fixed the problem using the BeforeRelease-Event of the global session pool (oracle.sessionpool). procedure TMyClass.Initialize; begin Oracle.SessionPool.PoolType:=ptOracle; Oracle.SessionPool.BeforeRelease:=SessionPoolBeforeRelease; end; procedure...
  3. M

    unicode problem with long strings

    Hi Marco, any news yet? thanks, Matthias
  4. M

    Session Pooling and RollbackOnDisconnect

    Hi, I also consider this a real problem and we actually had this problem in our application. If the program terminates unexpectedly due to an error, the data is written into the database although RollbackOnDisconnect is set to true. Is there anything you plan to do about this? kindly...
  5. M

    TOracleDataSet and Locate by blanks

    Hi Marco, well, this is working - as expected. Are you going to fix this in your package? thanks, Matthias
  6. M

    TOracleDataSet and Locate by blanks

    Hi Marco, thanks for your answer. But I already set TrimFields to false. As far as I can see it concerns the method SearchRecord where you're iterating through the FieldList. If the criteria is a ftString you do a StringArray[f] := TrimRight(Value); The trim method which cares about the...
  7. M

    TOracleDataSet and Locate by blanks

    Hi, i just encountered a problem using the Locate-function of the OracleDataSet. I've field which sometimes contains 10 blanks. The method will fail because the search criteria is trimmed and the original value in the dataset not (see function NullField). What would you suggest? kindly...
  8. M

    Wrong size info for fields (x4)

    Hi, well, I already set it to AutoDetect. I assume it may concerns the communication with the oracle api (oci.dll, oracle client 9.2.0.1 with patch set 9.2.0.4, odbc 9.2.0.5.4). As far as i know this is the most recent version. It seems that Oracle fixed their problems with unicode, because...
  9. M

    Wrong size info for fields (x4)

    HI, if I query for the size of my dataset-field I always get the size x 4. I heard about this being an oracle issue. Which possibilities do I have to pass around this? thanks, matthias
  10. M

    Doa & .Net

    Hi, do you have any news regarding doa and .net plans? thanks , Matthias
  11. M

    UniDirectional instead of TOracleQuery

    HI, I currently use 3.4.6 version of DOA and I am thinking on moving to version 4. I've some batch programs which are processing a lot of data. Actually I am doing this with TOracleQuery. I only need forward only and offline. Would it improve performance to switch to the new UniDirectional...
  12. M

    TOracleQuery leaking memory

    Hello, My batch program creates a lot of TOracleQueries and destroy them after executing. If I look in the taskmanager I see increasing the size of my program. I use Oci 8.1 and Doa 3.4.6.4. Searching through the forum I found that there was a problem with Oracle 8.0.x. So I tried to turn on...
Back
Top