Browse Source

* Do not raise error in case of warning (bug ID 36541)

git-svn-id: trunk@43895 -
michael 5 years ago
parent
commit
3578510884
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-db/src/sqldb/oracle/oracleconnection.pp

+ 1 - 1
packages/fcl-db/src/sqldb/oracle/oracleconnection.pp

@@ -1051,7 +1051,7 @@ begin
     OCI_SUCCESS : Result := True;
     OCI_SUCCESS : Result := True;
     OCI_SUCCESS_WITH_INFO : Begin
     OCI_SUCCESS_WITH_INFO : Begin
                             Result := True;
                             Result := True;
-                            HandleError;
+                            // HandleError;
                             end;
                             end;
   end; {case}
   end; {case}
 end;
 end;