赞
踩
右键登录名新建登录名(自己设置)
package jdbctext; import java.sql.*; public class Test { public static void main(String[] args) { String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; String dbURL = "jdbc:sqlserver://localhost:1433;DatabaseName=test(自己创建的数据库名字)"; String userName = "admin(自己创建的登录名和密码)"; String userPwd = "tool"; 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连接失败!"); } } }
右键java项目->构建路径->配置构建路径
这三个jar包都行,选择高版本的会报错,换低版本的jar包
下面是报错信息(我开始用的jre15报错,最后使用了jre8无报错)
Exception in thread “main” java.lang.UnsupportedClassVersionError: com/microsoft/sqlserver/jdbc/SQLServerDriver has been compiled by a more recent version of the Java Runtime (class file version 59.0), this version of the Java Runtime only recognizes class file versions up to 52.0
如果新建的数据库,用户没添加的话也会报错(自行添加)。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。