首页上一页 1 下一页尾页 1 条记录 1/1页
《Java从入门到精通》第20章第一个例子,我照着书输入的,为什么调试不通过?
发表在Java图书答疑
2008-12-15
是否精华
是
否
版块置顶:
是
否
调试信息显示第18行出错:return con 语句有问题,我找来找去找不到问题,请赐教,附代码如下:
import java.sql.*;
public class Conn {
Connection con;
public Connection getConnection(){
try{
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
System.out.println("数据库驱动加载成功");
}catch(ClassNotFoundException e){
e.printStackTrace();
}
try{
con=DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;"+
"DatabaseName =db_jdbc","sa","");
System.out.println("数据库连接成功");
}catch(SQLException e){
e.printStackTrace();
}
return con
}
public static void main(String[] args) {
Conn c =new Conn();
c.getConnection();
}
}
import java.sql.*;
public class Conn {
Connection con;
public Connection getConnection(){
try{
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
System.out.println("数据库驱动加载成功");
}catch(ClassNotFoundException e){
e.printStackTrace();
}
try{
con=DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;"+
"DatabaseName =db_jdbc","sa","");
System.out.println("数据库连接成功");
}catch(SQLException e){
e.printStackTrace();
}
return con
}
public static void main(String[] args) {
Conn c =new Conn();
c.getConnection();
}
}