当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

java中以windows集成办法衔接SQL Server[Java编程]

赞助商链接



  本文“java中以windows集成办法衔接SQL Server[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

本日有人问起,若何故windows集成方法衔接SQL Server,这个从前真没试过.

于是,翻开netBeans测试了一下,代码以下:

/*
  * To change this template, choose Tools | Templates
  * and open the template in the editor.
  */
package testsqlconn;
import java.sql.*;
import com.microsoft.sqlserver.jdbc.*;
/** *//**
  *
  * @author: Administrator:downmoon(3w@live.cn)
  * @date:2009-9-23 18:42:32
  * @Encoding:UTF-8
  * @File:TestSqlbyDS/TestSqlbyDS.java
  * @Package:testsqlconn
  */
public class TestSqlbyDS {
     public TestSqlbyDS(){}
     public void GetResutls()
     {
      // Declare the JDBC objects.
         Connection con = null;
         CallableStatement cstmt = null;
         ResultSet rs = null;
         try {
             // Establish the connection.
             SQLServerDataSource ds = new SQLServerDataSource();
             ds.setIntegratedSecurity(true);
             ds.setServerName("ap4\\agronet08");//数据库实例名
             ds.setPortNumber(1433);
             ds.setDatabaseName("AdventureWorksLT2008");//Database Name
             con = ds.getConnection();
             // Execute a SQL that returns some data.
             //cstmt = con.prepareCall("{call dbo.uspGetEmployeeManagers(?)}");
             //cstmt.setInt(1,50);
             cstmt = con.prepareCall(" select top 10 * from [SalesLT].[Product] ");//Sql
             rs = cstmt.executeQuery();
             // Iterate through the data in the result set and display it.
             while (rs.next()) {
                 System.out.println("Product: " + rs.getString("Name") + ", " + rs.getString("ProductNumber"));
                 System.out.println("ListPrice: " + rs.getString("ListPrice"));
                 System.out.println();
             }
         } // Handle any errors that may have occurred.
         catch (Exception e) {
             e.printStackTrace();
         } finally {
             if (rs != null) {
                 try {
                     rs.close();
                 } catch (Exception e) {
                 }
             }
             if (cstmt != null) {
                 try {
                     cstmt.close();
                 } catch (Exception e) {
                 }
             }
             if (con != null) {
                 try {
                     con.close();
                 } catch (Exception e) {
                 }
             }
         }
     }
}


  以上是“java中以windows集成办法衔接SQL Server[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • 利用Javascript实现网页水印(非图片水印)
  • Java开辟环境的搭建
  • Ubuntu java安装与配置
  • 办理Ubuntu 10.04 Firefox3.6 Java浏览器插件不工作的问
  • Ubuntu重装后Java环境的设置
  • Sun Java进入Ubuntu 10.10软件中央
  • Ubuntu 10.10配置Java开辟环境
  • 在Ubuntu 10.10中配置Java环境变量的办法
  • Ubuntu下Java环境的搭建
  • Ubuntu 10.04 下安装 Java, JRE
  • Ubuntu 10.04下的搭建SUN JAVA开辟环境
  • Ubuntu 12.04安装java7
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .