DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=41541>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=41541 Summary: ORA-00600: internal error code, arguments: [12259], [], [], [], [], [], [], [] Product: Tomcat 5 Version: 5.0.0 Platform: All OS/Version: Windows NT Status: NEW Severity: normal Priority: P2 Component: Unknown AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Hi, I am calling a stored proc in java ,code is below: try { //cstmt = con.prepareCall("BEGIN DE_PORTAL.EXEC_PRC_GET_MONTHLY_DATA; END;"); cstmt = con.prepareCall("{ call DE_PORTAL.EXEC_PRC_GET_MONTHLY_DATA() }"); } catch (Exception e) { e.printStackTrace(); } ResultSet rs = cstmt.executeQuery(); System.out.println("Query Executed"); System.out.println("ResultSet :" +rs ); int count = 0; while(rs.next()) { System.out.println("Count : "+count); count++; } I am getting this error.any idea what can be the reason and how can i resolve this. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]