Recent content by indmolding

  1. I

    Problem adding record

    Worked like a charm! Thanks for the prompt response. BW
  2. I

    Problem adding record

    Thanks for the quick reply. My question here is also: Why does my other statement work, when I did nothing to make it do so? It's just been sort of confusing. I will give this a try and see how it works.
  3. I

    TOracleQuery leaking memory

    I have gotten around this by using a global TOracleQuery for general use. You don't have to keep instantiating the rascal, which makes it pretty quick.
  4. I

    Problem adding record

    I create a TOracleDataset with the following select statement: select a.*, a.rowid, b.itemno from imc.qa_deviations a, iqms.arinvt b where b.id = a.shipping_arinvt_id order by start_date desc I do this because I store only the link to table arinvt, not the data that's in the table. I'm trying...
  5. I

    how to trap logon error

    Actually, it looks like its in the Oracle Net code... If I wait until after I'm logged in, I get an External Exception c0000006 error, which is more than I get with the logon. Perhaps they are trapping this error, and never coming back? In any event, it doesn't seem that I can successfully...
  6. I

    how to trap logon error

    Thanks for the replies! Basically, what I'm doing is making a connection, then unplugging the computer from the network. If I just leave the computer unplugged, and try CheckConnection(true), the computer hangs forever (or at least 10 minutes, which is all the patience I had). If I plug it...
  7. I

    how to trap logon error

    I am trying to detect, via code, whether or not I have been successful logging onto an Oracle database. In general, I've been trying: try .Execute except on e:Exception do begin end; end; There is never an exception raised, yet there is an error dialog which...
  8. I

    No OracleNavigator in new CLX app - D6

    By the way, I downloaded the latest DOA components this afternoon...
  9. I

    No OracleNavigator in new CLX app - D6

    I am attempting to convert a VCL application to a CLX application, and everything seems to go alright EXCEPT that my TOracleNavigator disappears from my component palette. I noticed this when manually changing the app to CLX (Q) units. Suddenly, the Navigator disappears. It is visible if I...
Back
Top