错误: 在类 test.test 中找不到 main 方法, 请将 main 方法定义为: public static void main(String[

时间:2022-06-12 15:56:22
package test;
import java.sql.*;

public class test{
 public static void main(String [] args) throws Exception
 {
  String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver";
  String dbURL="jdbc:sqlserver://localhost:1433;DatabaseName=jack_sql";
  String userName="sa";
  String userPwd="123456789";
 try
{
Class.forName(driverName);
System.out.println("加载驱动成功!");
}catch(Exception e){
e.printStackTrace();
System.out.println("加载驱动失败!");
}
try{
Connection dbConn=DriverManager.getConnection(dbURL,userName,userPwd);
System.out.println("连接数据库成功!");
}catch(Exception e)
{
e.printStackTrace();
System.out.print("SQL Server连接失败!");
}
Connection Conn=DriverManager.getConnection(dbURL,userName,userPwd);
Statement stat=Conn.createStatement();
}
}

4 个解决方案

#1


求大神来解答

#2


java的怎么跑到这里来问啊。

#3


我也遇到了相同问题,是因为没有保存....

#4


点右上角保存所有,然后再运行就可以了

#1


求大神来解答

#2


java的怎么跑到这里来问啊。

#3


我也遇到了相同问题,是因为没有保存....

#4


点右上角保存所有,然后再运行就可以了