Recent content by mglass

  1. M

    OracleSession.LogOn Freeze

    The client file sqlnet.ora controls the timeout. SQLNET.OUTBOUND_CONNECT_TIMEOUT=10 SQLNET.SEND_TIMEOUT=10 "ORA-12154: TNS:could not resolve the connect identifier specified" indicates that Oracle didn't know where to connect to. You would get a slightly different error if it cannot connect to...
  2. M

    OracleSession.LogOn Freeze

    When the server goes away without telling the client, the client has to wait for the connection to timeout when it sends another command (which includes any attempt to determine the state of the connection). Have you tried using Logoff (or Connected := False) before using Logon? There are...
  3. M

    ClearCalcFields incorrect, causes memory corruption

    Now that I've done further investigation, I've found that it is really caused by GetRecBufSize returning a buffer size that is too small. This post seems like it might be the appropriate solution.
  4. M

    ClearCalcFields incorrect, causes memory corruption

    I have traced the origin of a memory corruption in DOA 4.1.2.2 under Delphi 2010 (see similar error https://forums.allroundautomations.com/ubb/ubbthreads.php?ubb=showflat&Number=43919) that I'm experiencing back to this function: procedure TOracleDataSet.ClearCalcFields(Buffer...
  5. M

    Crash in TOracleFieldInfo.RealDataSize (Field = nil)

    It seems the error is caused when you have a lookup field defined which has the same FieldName as a column in the select statement (with no TField defined for that column). I have a minimal project that reproduces the problem (if needed). Martin
  6. M

    Crash in TOracleFieldInfo.RealDataSize (Field = nil)

    I have an application that I am testing in Delphi 2010, using DOA 4.1.2.2 (connecting to Oracle 12.2). The form I have a problem with is littered with TOracleDataSets, with a several lookup fields, etc, with lots of Active/Refresh manipulation when the form loads. On all datasets, the string...
  7. M

    XE3 support/installer

    Now that XE3 has been released, when should we expect to see XE3 supported or an installer provided?
  8. M

    How can i do that?

    I am using DOA 4.0.5, and still encountering this problem. It appears that DOA isn't correctly truncating the string as it should be (when using its worst-case estimates on string length). When can we see this fixed? In particular, I would want to see more accurate estimates based on...
  9. M

    Setting otDate variable using WideString broken

    It appears that TVariableData.SetValue does not support a variant of type varOleStr (widestring) when setting otDate variables. I am using DOA 4.0.5. Can this support please be added (and for the other oracle types where appropriate)? Thanks, Martin
Back
Top