Recent content by lupik

  1. L

    lost connection (ORA-01089, ORA-12500) - application freezes

    Hi, So do you have any idea why it hangs on Connected := True with Linux server (the example was checked on Windows Server)? Best regards, lupik
  2. L

    lost connection (ORA-01089, ORA-12500) - application freezes

    Hello, I've written a simple procedure: with OracleSession do for i := 0 to 10 do try if Connected then Connected := False; LogonDatabase := edDB.Text; LogonUsername := edLogin.Text; LogonPassword := edPass.Text; Connected := True...
  3. L

    lost connection (ORA-01089, ORA-12500) - application freezes

    I forgot to add that the Oracle server was restarted when the application was working. lupik
  4. L

    lost connection (ORA-01089, ORA-12500) - application freezes

    Hi, When there's no exception I do a select sql with TOracleDataSet + while not Eof ... and reading/writing some fields. Besides I use TOracleQuery + another TOracleSession component (in a separate thread) to do inserts with a clob field but in these case I did nothing else (only Connected :=...
  5. L

    lost connection (ORA-01089, ORA-12500) - application freezes

    Hello, I have a TOracleSession component (DOA 3.4.4) and try to connect to a database (9.2.0.4 server on Linux) every 60 seconds by doing: Connected := False; (here changing database name, login and password which can be different from previous parameters) Connected := True; When the database...
Back
Top