Pages

2011年8月13日 星期六

Microsoft JDBC 連接 URL 範例


在下列範例中,範例程式碼會在連接 URL 中設定各種連接屬性,然後呼叫 DriverManager 類別的 getConnection 方法,以傳回SQLServerConnection 物件。
接著,範例程式碼會使用 SQLServerConnection 物件的 createStatement 方法建立 SQLServerStatement 物件,然後呼叫 executeQuery方法來執行 SQL 陳述式。
最後,範例會使用從 executeQuery 方法傳回的 SQLServerResultSet 物件,重複執行 SQL 陳述式所傳回的結果。


  1. import java.sql.*;
  2.  
  3. public class connectURL {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. // Create a variable for the connection string.
  8. String connectionUrl = "jdbc:sqlserver://localhost:1433;" +
  9. "databaseName=AdventureWorks;user=UserName;password=*****";
  10.  
  11. // Declare the JDBC objects.
  12. Connection con = null;
  13. Statement stmt = null;
  14. ResultSet rs = null;
  15.  
  16. try {
  17. // Establish the connection.
  18. Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
  19. con = DriverManager.getConnection(connectionUrl);
  20.  
  21. // Create and execute an SQL statement that returns some data.
  22. String SQL = "SELECT TOP 10 * FROM Person.Contact";
  23. stmt = con.createStatement();
  24. rs = stmt.executeQuery(SQL);
  25.  
  26. // Iterate through the data in the result set and display it.
  27. while (rs.next()) {
  28. System.out.println(rs.getString(4) + " " + rs.getString(6));
  29. }
  30. rs.close();
  31. rs = null;
  32. stmt.close();
  33. stmt = null;
  34. con.close();
  35. con = null;
  36. }
  37.  
  38. // Handle any errors that may have occurred.
  39. catch (Exception e) {
  40. e.printStackTrace();
  41. }
  42. finally {
  43. if (rs != null) try { rs.close(); } catch(Exception e) {}
  44. if (stmt != null) try { stmt.close(); } catch(Exception e) {}
  45. if (con != null) try { con.close(); } catch(Exception e) {}
  46. }
  47. }
  48. }

Related Posts:

  • Microsoft JDBC 連接 URL 範例 在下列範例中,範例程式碼會在連接 URL 中設定各種連接屬性,然後呼叫 DriverManager 類別的 getConnection 方法,以傳回SQLServerConnection 物件。 接著,範例程式碼會使用 SQLServerConnection 物件的 createStatement 方法建立 SQLServerStatemen… Read More
  • 鎖的問題 在SQL Server中使用加鎖的問題,我就以前的經驗和收集的一些資料簡單的提出我自己的一些看法,不知道對啟明星是否有所幫助: 一般而言,下面是個典型的打開資料庫的過程。 <% ’游標類型 Const adOpenForwardOnly = 0 Const adOpenKeyset = 1 Const adOpenDynamic =&nb… Read More
  • T-SQL 取代Cursor操作轉仔自 : RICO技術農場 自己在工作開發上(雖然很少開發...XD)遇到要執行一筆一筆的操作, 我會盡量避免使用Cursor來處理(效能會很差),而想其他方法來取代, 剛好看到網友詢問,這裡順手紀錄針對一筆一筆操作不使用Cursor做法。 需求:取得來源資料表col2欄位並依col1條件逐筆更新目的資料表c2欄位(@desttbl) declare @step int, @uplimit int, @currentid int,… Read More
  • SQL中的GETDATE() 轉換函式與產生結果--Sql Server 中一个非常强大的日期格式化函数 Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06 Select CONVERT(varchar(100), GETDATE(), 2): 06.05.16 Select CONVERT(varchar(100)… Read More
  • SQL Server Studio Manager 抓取錯誤訊息直接利用 PRINT使用下列函式,即可印出錯誤訊息。 USE AdventureWorks2008R2; GO -- Verify that the stored procedure does not already exist. IF OBJECT_ID ( 'usp_GetErrorInfo', 'P' ) IS NOT NULL DROP PROCEDURE usp_GetErrorInfo; GO -- Create pro… Read More

0 意見: