使用JDBC访问SQLServer 2008
Posted god with us
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JDBC访问SQLServer 2008相关的知识,希望对你有一定的参考价值。
使用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的主要内容,如果未能解决你的问题,请参考以下文章
无法将 jdbc 连接到 sql server 2008 r2
Eclipse使用JDBC方式连接SQLServer2008
HikariCP 数据库连接池连接SQLServer2008 提示:com.microsoft.sqlserver.jdbc.SQLServerConnection.getSchema()Ljava/