| Author |
servlet & type4 driver
|
kedar parundekar
Ranch Hand
Joined: May 10, 2006
Posts: 40
|
|
Hi, In following program I am using type4 driver & servlet when I run the application then drivers are loaded as well as connection is established properly. but run time error is java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [], [], [], [], [] at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168) Can any one help me why this error? Code=> import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class JdbcServlet extends HttpServlet { Connection con=null; Statement stmt=null; ResultSet rst=null; public void init(ServletConfig config) throws ServletException { try { Class.forName("oracle.jdbc.driver.OracleDriver");// Type 4 Driver System.out.println("The Driver are loaded"); con = DriverManager.getConnection("jdbc racle:thin:@dbs:1521 rcl","java","java"); System.out.println("The Connection is established"); } catch (Exception e) { e.printStackTrace(); } } public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException { try { res.setContentType("text/html"); PrintWriter pw=res.getWriter(); stmt=con.createStatement(); String sql="Select * from logkedar"; rst=stmt.executeQuery(sql); while(rst.next()) { //System.out.println("In Dispaly"); System.out.println("ID "+rst.getInt("id")+"\tNAME"+rst.getString("name")+"\tPASSWORD"+rst.getString("pwd")); } } catch (Exception e) { e.printStackTrace(); } } }
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
Looks like you've got some internal error in your Oracle database. I don't think these errors are cause by a bug in your JDBC code. YOu can find out what an ORA-00600 means via metalink
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Jan Cumps
Bartender
Joined: Dec 20, 2006
Posts: 2343
|
|
Confirming Paul's remark: It's an internal error. It's not a JDBC error. If you have an Oracle Metalink account, you can open support document 153788.1 This active document helps you to locate the internal error. I looked up your error ttcgcshnd-1:
DESCRIPTION: Oracle is checking that the local character set id is valid as part of the process to do character data conversions between different character sets. This error is raised when the local character set id is found to be invalid. ... SUGGESTIONS: ... Fixed: 8.1.7.2, 9.0.1.0
Regards, Jan [ February 28, 2007: Message edited by: Jan Cumps ]
|
OCUP UML fundamental
ITIL foundation
|
 |
 |
|
|
subject: servlet & type4 driver
|
|
|