標籤: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