一样的程序,放在Eclipse上能够运行,但是放在NetBeans上就出现异常!
程序如下:import java.sql.*;
public class test
{
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
String driver ="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String url ="jdbc:sqlserver://localhost:1433;databaseName=house";
String user ="sa";
String pwd ="";
String sql ="select * from man;";
public void doTest() {
try{
Class.forName(driver);
System.out.println("加载驱动成功!");
conn = DriverManager.getConnection(url,user,pwd);
System.out.println("连接数据库成功!");
}catch(Exception e){
e.printStackTrace();
}
}
public static void main(String [] args)
{
new test().doTest();
}
}
Eclipse下的输出为:
加载驱动成功!
连接数据库成功!
NetBeans下的运行输出为:
compile-single:
run-single:
java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
at (URLClassLoader.java:200)
。
。