Java串連Sql Server2008

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   os   使用   sp   

參考:http://weistar.iteye.com/blog/1744871

準備工作:

1.下載JDBC驅動包:http://www.microsoft.com/zh-cn/download/details.aspx?id=21599

2.下載 完成後,點擊運行,會提示你選擇解壓目錄.

3.解壓完成後,進入 <你解壓到得目錄>\sqljdbc_3.0\chs,有sqljdbc.jar和sqljdbc4.jar,這裡使用sqljdbc4.jar

4.配置Sql Server2008連接埠:

   a.sqlserver2008的連接埠是動態,找到Sql Server2008組態管理器

   b.Sql server網路設定->MSSQLSERVER的協議->TCP/IP

   c.如果Tcp/IP為關閉狀態,則啟動之,右擊->屬性,如下配置:

       

   d.Sql Server服務->SQL Server(MSSQLSERVER)->右擊->重新啟動

 

串連工作:

1.引包工作:

   右擊你建立的JAVA工程,找到Build path,選擇Add External Archives,找到你要匯入的包sqljdbc4.jar,點擊開啟就可以引入,引入後在工程下面的ReferencedeLibraries下便能顯示    這個包。

2.編寫代碼測試:

import java.sql.Connection;    import java.sql.DriverManager;    import java.sql.ResultSet;    import java.sql.Statement;    public class sqlserver{    public static void main(String args[])
{ String urlserver = "jdbc:sqlserver://127.0.0.1:1433;databaseName=test;user=sa;password=sa123";//sqlserver身份串連 String urlwindows = "jdbc:sqlserver://127.0.0.1:1433;databaseName=test;integratedSecurity=true;";//windows整合模式串連 // 聲明JDBC objects. Connection con = null; Statement stmt = null; ResultSet rs = null; try
{ // 建立串連 System.out.println("準備串連!!!"); Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); con = DriverManager.getConnection(urlserver); System.out.println("串連成功!!!"); // 寫一個sql語句,並執行返回資料 String SQL = "SELECT * FROM a"; stmt = con.createStatement(); rs = stmt.executeQuery(SQL); //將資料顯示出來 while (rs.next())
{ System.out.println(rs.getString(2)); } } catch (Exception e)
{ e.printStackTrace(); } finally
{ if (rs != null) try
{ rs.close(); }
catch (Exception e)
{ } if (stmt != null) try
{ stmt.close(); }
catch (Exception e)
{ } if (con != null) try
{ con.close(); }
catch (Exception e)
{ } } } }

 

  

Java串連Sql Server2008

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.