Recent content by MDonath

  1. M

    Exception handling for C++ Builder 64 bit

    My example: void __fastcall TForm1::Button1Click(TObject *Sender) { try { Os->LogOn(); Oq->SQL->Text = "SELECT SYSDATE FROM PUAL"; Oq->Execute(); ShowMessage(Oq->FieldAsDate(0).DateTimeString()); Os->LogOff(); } catch(Exception& e) {...
  2. M

    Exception handling for C++ Builder 64 bit

    Congratulations, in C++ Builder XE7 it is possible to use DOA even if an exception (EOracleError) occurs. In C++ Builder XE3 that is not possible, the program crashes on every EOracleError. Is it possible to have this feature in XE3 too? MD
  3. M

    Resource DOANAV_first not found.

    Very intersting, because TOracleNavigator is not used in the entire project. But a restart of the application solved the problem. Markus
  4. M

    Resource DOANAV_first not found.

    Hello, A customer of us gets the message above when executing a select statement. What does this message mean? Markus
  5. M

    TOracleLogon.LogonHistory

    I have changed to RADStudio 2010. There is a problem: OracleLogon1.LogonHistory := true; OracleLogon1.HistoryRegSection := 'Test'; OracleLogon1.Execute; In the history list the logon database name is destroyed if there are entries. This error occurs in both Delphi and C++ Builder.
  6. M

    TOracleObject.AddElement very slow

    I have to call this function in a loop for about 35000 times. This is very, very slow. Is there a way to do this faster? I think of a method like AddElements(35000)...
  7. M

    C++ Builder 2009?

    What about C++ Builder 2009 support?
Back
Top