Recent content by Visi

  1. V

    try... catch.. issue

    The code within the "Catch" block is not executing when I get an exception. The flow stops executing, by just displaying an oracle error message. It looks like I have to handle the problem in the OnArrayError event. The only way to keep executing the FOR loop is by setting "Continue = true; "
  2. V

    try... catch.. issue

    Hi, I am writing a small code in BCB 6 to insert data into a table (Import utility) using TOracleQuery. I have the following code included in a "for" cycle. try { frmDataModule->OracleQuery->Execute(); } catch (EOracleError &OraErr) { // this does not execute at all...
Back
Top