java连接sqlserver2012数据库
时间: 2023-04-26 16:02:47 浏览: 256
要连接SQL Server 2012数据库,需要使用Java的JDBC API。首先,需要下载并安装Microsoft JDBC驱动程序,然后在Java代码中使用该驱动程序来连接数据库。以下是一个简单的示例代码:
```
import java.sql.*;
public class SQLServerConnection {
public static void main(String[] args) {
try {
// 加载驱动程序
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
// 建立连接
String url = "jdbc:sqlserver://localhost:1433;databaseName=mydatabase";
String user = "myusername";
String password = "mypassword";
Connection conn = DriverManager.getConnection(url, user, password);
// 执行查询
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM mytable");
while (rs.next()) {
// 处理结果集
}
// 关闭连接
rs.close();
stmt.close();
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
在上面的代码中,需要将url、user和password替换为实际的数据库连接信息。其中,url的格式为“jdbc:sqlserver://服务器地址:端口号;databaseName=数据库名”。如果需要使用Windows身份验证,可以省略user和password参数,改为使用IntegratedSecurity=true参数。
阅读全文