Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0002941
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Openbravo ERP] A. Platformminoralways2008-04-28 18:502008-06-19 19:33
Reporteruser71View Statuspublic 
Assigned Tocromero 
PrioritynormalResolutionfixedFixed in Version2.40alpha-r2
StatusclosedFix in branchFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Merge Request Status
Review Assigned To
OBNetwork customerNo
Web browser
ModulesCore
Support ticket
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0002941: Oracle specific code fails on Postgresql

DescriptionHi,

browse this file:
openbravo/src/org/openbravo/erpCommon/ad_forms/InitialClientSetup.java

inside you'll see several refernces to
" strError = strError.substring( strError.lastIndexOf("@ORA-") ,strError.length());
"

But "@ORA-" is specific Oracle code that'll lead to errors such as out of range exception (-1 passed to lastIndexOf ) if used with Postgresql under certain circumstances. We got the error while importing the Frechn chart of account on postgresql, we add to comment out those lines to make it pass.

Anyway, I don't really know what the current code breaks wand what would be the best fix, but what I know is that this code is currently unsafe for Postgresql.

Best regards,

Raphaël Valyi
http://www.smile.fr [^]
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
depends on backport 0003698 closedcromero Oracle specific code fails on Postgresql 

-  Notes
(0003642)
cromero (viewer)
2008-05-06 01:59
edited on: 2008-06-12 09:26

Logged In: YES
user_id=1500614
Originator: NO

Fixed in the trunk in revision 3955
(0006530)
user71
2005-06-01 00:00
edited on: 2008-06-12 09:43

This bug was originally reported in SourceForge bug tracker and then migrated to Mantis.

You can see the original bug report in:
https://sourceforge.net/support/tracker.php?aid=1953524 [^]
(0007886)
psarobe (viewer)
2008-06-19 19:33

Change that code with this:

strError = strError.substring( (strError.lastIndexOf("@ORA-")>0?strError.lastIndexOf("@ORA-"):0) ,strError.length());

- Issue History
Date Modified Username Field Change
2008-06-19 19:33 psarobe Status resolved => closed
2008-06-19 19:33 psarobe Note Added: 0007886


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker