Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 24790 invoked from network); 5 Feb 2007 12:45:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2007 12:45:40 -0000 Received: (qmail 75158 invoked by uid 500); 5 Feb 2007 12:45:41 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 75112 invoked by uid 500); 5 Feb 2007 12:45:41 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 75101 invoked by uid 500); 5 Feb 2007 12:45:41 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 75098 invoked by uid 99); 5 Feb 2007 12:45:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Feb 2007 04:45:41 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Feb 2007 04:45:34 -0800 Received: by brutus.apache.org (Postfix, from userid 33) id 3753E7142A6; Mon, 5 Feb 2007 04:45:13 -0800 (PST) From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Subject: DO NOT REPLY [Bug 41540] New: - ORA-00600: internal error code, arguments: [12259], [], [], [], [], [], [], [] Message-ID: X-Bugzilla-Reason: AssignedTo Date: Mon, 5 Feb 2007 04:45:13 -0800 (PST) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . 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=41540 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: shivani.kataria@fmr.com CC: shivani.kataria@fmr.com 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: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org