这是程序代码,我是按照网上和视频讲解的步骤写的代码:
import
java.sql.*;
public class jdbc
{
/**
*
@param args
*/
public
static void main(String[] args) {
//
TODO Auto-generated method stub
Connection
ct = null;
PreparedStatement ps =
null;
ResultSet rs
= null;
try
{
//第一步,加载驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//得到连接
ct=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=xqsl;integratedSecurity=true;");
//创建PreparedStatement
ps=ct.prepareStatement("select * from
产品名称表");
rs=ps.executeQuery();
//这个方法适用于从表中查找数据
//如果要向表中插入,删除,更新数据需要使用方法executeUpdate();
while(rs.next()){//这里rs.next()一定要使用next()方法,否则有空指针错误
String
number=rs.getString(1);
String
string=rs.getString(2);
System.out.println(number+"
"+string);
}
}
catch (Exception e) {
e.printStackTrace();
}finally{
try
{
if(rs!=null){
rs.close();
}
if (ps != null)
ps.close();
if
(ct != null)
ct.close();
}
catch(Exception
e){
e.printStackTrace();
}
}
}
}
相关文章
- 04-22Java连接Sql Server 2008的简单数据库应用
- 04-22Windows 2008服务器环境PHP连接SQL Server数据库的配置及连接方法
- 04-22java连接sql server报错:com.microsoft.sqlserver.jdbc.SQLServerException: 通过端口 1433 连接到主机 localhost 的 TCP/IP 连接失败。错误:“connect timed out。请验证连接属性,并检查 SQL Server 的实例正在主机上运行,且在此端口接受 TCP/IP 连接,还要确保防火墙没有阻止到
- 04-22Sql server2012连接Sql server 2008时出现的问题:已成功与服务器建立连接,但在登陆过程中发生错误。(provider:SSL Provider,error:0-接收到的消息异常,或格式不正确。)
- 04-22【转】Java JDBC连接SQL Server2005错误:通过端口 1433 连接到主机 localhost 的 TCP/IP 连接失败
- 04-22SQL Server无法连接到(local)问题的解决的方法
- 04-22MyEclipse连接SQL Server 2008数据库的操作方法
- 04-22MyEclipse连接SQL Server 2008数据库的操作方法
- 04-22SQL Server 2008 允许远程连接的解决方法
- 04-22(转)SQL Server 2008 允许远程连接的解决方法