码迷,mamicode.com
首页 > 数据库 > 详细

使用JDBC访问SQLServer 2008

时间:2016-09-05 16:50:39      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

使用JDBC访问SQLServer 2008

// 准备数据库驱动程序
String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
// 加载数据库驱动程序
Class.forName(driver);

// 准备连接参数
String connectionUrl = "jdbc:sqlserver://localhost:1433;";
String user = "xxx";
String password = "xxx";
// 创建数据库连接
Connection connection = null;
connection = DriverManager.getConnection(connectionUrl, user, password);
// 
Statement statement = null;
statement = connection.createStatement();
String sql = "SELECT * FROM YourTable;";
// 获取查询结果 
ResultSet resultSet = null;
resultSet = statement.executeQuery(sql);
// 处理结果集 
while(resultSet.next()){
}
// 释放SQL资源,关闭连接
resultSet.close();
statement.close();
connection.close();

 

使用JDBC访问SQLServer 2008

标签:

原文地址:http://www.cnblogs.com/godwithus/p/5825612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!