java如何连接sqlserver数据库
时间: 2023-06-23 10:45:51 浏览: 82
java连接sql server数据库方法
要连接 SQL Server 数据库,你需要使用 JDBC 驱动程序。以下是连接 SQL Server 数据库的步骤:
1. 下载 JDBC 驱动程序:你需要下载 Microsoft JDBC 驱动程序,它可以在 Microsoft 官网上找到。
2. 安装驱动程序:将下载的 JDBC 驱动程序复制到一个目录中。
3. 加载驱动程序:使用 Class.forName() 方法加载驱动程序。
4. 连接到数据库:使用 DriverManager.getConnection() 方法连接到数据库。
以下是连接 SQL Server 数据库的示例代码:
```java
import java.sql.*;
public class SQLServerConnection {
public static void main(String[] args) {
// JDBC 驱动程序类名和数据库 URL
static final String JDBC_DRIVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
static final String DB_URL = "jdbc:sqlserver://localhost:1433;databaseName=mydatabase";
// 数据库的用户名和密码
static final String USER = "username";
static final String PASS = "password";
Connection conn = null;
Statement stmt = null;
try{
// 加载驱动程序
Class.forName(JDBC_DRIVER);
// 连接到数据库
System.out.println("连接到数据库...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
// 执行查询
System.out.println("实例化Statement对象...");
stmt = conn.createStatement();
String sql;
sql = "SELECT id, name, age FROM users";
ResultSet rs = stmt.executeQuery(sql);
// 处理结果集
while(rs.next()){
// 通过字段检索
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
// 输出数据
System.out.print("ID: " + id);
System.out.print(", 姓名: " + name);
System.out.println(", 年龄: " + age);
}
// 关闭结果集、语句和连接
rs.close();
stmt.close();
conn.close();
}catch(SQLException se){
// 处理 JDBC 错误
se.printStackTrace();
}catch(Exception e){
// 处理 Class.forName 错误
e.printStackTrace();
}finally{
// 关闭资源
try{
if(stmt!=null) stmt.close();
}catch(SQLException se2){
}
try{
if(conn!=null) conn.close();
}catch(SQLException se){
se.printStackTrace();
}
}
System.out.println("Goodbye!");
}
}
```
注意:你需要将上面的示例代码中的 "username" 和 "password" 替换为你的数据库的用户名和密码。
阅读全文