Topic: error: Can't write: |
Print this page |
1.error: Can't write: | Copy to clipboard |
Posted by: sdlwhb Posted on: 2006-05-31 11:29 package test; import java.sql.*; public class chatreg{ String sDBDriver = "org.gjt.mm.mysql.Driver"; String sConnStr = "jdbc:mysql://localhost/hc"; Connection conn = null; ResultSet rs = null; public chatreg() { try { Class.forName(sDBDriver); } catch(java.lang.ClassNotFoundException e) { System.err.println("chatreg(): " + e.getMessage()); } } public ResultSet executeQuery(String sql) { rs = null; try { conn = DriverManager.getConnection(sConnStr,"hc_f","hcdingfaf"); Statement stmt = conn.createStatement(); rs = stmt.executeQuery(sql); } catch(SQLException ex) { System.err.println("aq.executeQuery: " + ex.getMessage()); } return rs; } } 不知道是哪里错了,在服务器上调试时出现如下错误: Note: sun.tools.javac.Main has been deprecated. error: Can't write: /www/users/hc-edu.com/WEB-INF/classes/test/chatreg.class 1 error, 1 warning 请问哪位能够指点一下,在下将感激不尽! |
2.Re:error: Can't write: [Re: sdlwhb] | Copy to clipboard |
Posted by: lisliefor Posted on: 2006-05-31 12:44 rs = stmt.executeQuery(sql); sql?字符变量? 没见声明、也没见赋值,代码没贴完整?! |
3.Re:error: Can't write: [Re: sdlwhb] | Copy to clipboard |
Posted by: zcjl Posted on: 2006-05-31 13:55 sdlwhb wrote: 在什么OS的服务器上调试的?用的什么方式编译?jdk什么版本? |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |