Recent content by MaDonath

  1. M

    Pass TimestampAttr to TOracleObject

    Is there any idea to solve my problem?
  2. M

    Pass TimestampAttr to TOracleObject

    Further tests: TOracleTimestamp* ts = obj->ObjElements[0]->TimestampAttr("TS"); if(ts) { // yes, it's true; if(ts->Session == mysess) { // yes, that's true too. ts->SetValuesTZ(2019, 1, 18, 1, 0, 0, 0, 0, 0); -> Exception: TOracleTimestamp: Invalid handle. } }
  3. M

    Pass TimestampAttr to TOracleObject

    This is read only: __property short Year = {read=GetYear, nodefault};
  4. M

    Pass TimestampAttr to TOracleObject

    I would like to set a TimestampAttr of a TOracleObject: TOracleObject* obj = new TOracleObject(mysess, "name, ""); TOracleTimestamp* ts = new TOracleTimestamp(mysess, otTimestampLTZ); ts->SetValuesTZ(...); obj->AddElement(); obj->ObjElements[0]->SetAttr("NR", 123); attribute TM ist an Oracle...
  5. M

    TOracleSession.Connected

    I think there is an error in the 'Connected' property of TOracleSession. 'Connected' is true if the connection has been interrupted externally. (ORA error 3114 'not connected to ORACLE') Should not 'Connected' be false in this case? Markus
  6. M

    DOA development

    The current version already exists a couple of years. Is the project still developed? It is a long time ago that I asked for a function like 'TOracleObject.AddElements' because 'TOracleObject.AddElements' is very slow for a large number of calls. I believe to remember such a function was...
Back
Top