|
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=TestDB";
//TestDB为您建好的数据库名
String user="sa";
String password="";
Connection conn=DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from TestTable"; //TestTable为已经建好的表
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()){
...... //对查询结果进行相应的处理
}
rs.close();
stmt.close();
conn.close(); |
|