JDBC串連SQL Server代碼模板

來源:互聯網
上載者:User

標籤:des   style   blog   color   io   os   java   ar   for   

*                  JDBC串連SQL Server資料庫 代碼模板
* Connection: 串連資料庫並擔任傳送資料的任務;
* Statement :  執行SQL語句;
* ResultSet :  儲存Statement執行後產生的查詢結果。

*
* Class.forName(JDBC驅動類);

* Connection dbConn=DriverManager.getConnection(JDBC URL,資料庫使用者名稱,密碼);

資料庫資訊:

 

 

代碼如下:

import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class JDBC_conn_SQLServer {    public static void main(String[] args) throws SQLException,ClassNotFoundException {        /**********************************************************         *                  JDBC串連SQL Server資料庫 代碼模板         *          * Connection: 串連資料庫並擔任傳送資料的任務;         * Statement :  執行SQL語句;         * ResultSet :  儲存Statement執行後產生的查詢結果。         *          * Class.forName(JDBC驅動類);         * Connection dbConn = DriverManager.getConnection(JDBC URL ,資料庫使用者名稱,密碼);         *          **********************************************************/        /**********************************************************         * 資料庫登 陸 名:sa         * 資料庫登陸密碼:sa         * 資料庫名稱:test         * 表名稱:T_users         * 欄位:         *         ID      int         *      username   nvarchar(50)         *      password   nvarchar(50)         * */                //1.註冊驅動        Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");                //2.擷取資料庫連接        Connection dbConn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433; DatabaseName=test", "sa","sa");                //2.獲得Statement對象        Statement st = dbConn.createStatement();        //3.執行SQL語句        ResultSet rs = st.executeQuery("select * from T_users");                //4.處理結果        while (rs.next()) {                        // 讀取並儲存資料庫查詢結果            int x = rs.getInt("ID");            String s1 = rs.getString("username");            String s2 = rs.getString("password");                        // 列印結果            System.out.println("ID=" + x);            System.out.println("username=" + s1);            System.out.println("password=" + s2);        }                //釋放資源        rs.close();        st.close();        dbConn.close();    }}

程式運行:

 

JDBC串連SQL Server代碼模板

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.