JAVA JDBC連接 SQLServer2012


連接數據庫的java測試代碼

 1 import java.sql.*;
 2 
 3 public class ConManager {
 4     final static String cfn = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
 5     final static String url = "jdbc:sqlserver://localhost:1433;DatabaseName=student";
 6     
 7     public static void main(String[] args) {
 8         Connection con = null;
 9         PreparedStatement statement = null;
10         ResultSet res = null;
11         try {
12             Class.forName(cfn);
13             con = DriverManager.getConnection(url,"sa","1234");
14             
15             String sql = "select *from test";//查詢test表
16             statement = con.prepareStatement(sql);
17             res = statement.executeQuery();
18             while(res.next()){
19                 String title = res.getString("test_name");//獲取test_name列的元素                                                                                                                                                    ;
20                 System.out.println("姓名:"+title);
21             }
22             
23         } catch (Exception e) {
24             // TODO: handle exception
25             e.printStackTrace();
26         }finally{
27             try {
28                 if(res != null) res.close();
29                 if(statement != null) statement.close();
30                 if(con != null) con.close();
31             } catch (Exception e2) {
32                 // TODO: handle exception
33                 e2.printStackTrace();
34             }
35         }
36     }
37 }

要在java項目中導入sqljdbc4.jar包

項目名鼠標右鍵->Build Path->Configure Build Path

添加sqljdbc4.jar

添加成功

 

接下來就是處理SQLServer2012數據庫

1.保證服務正常啟動

2.保證在數據庫中有這些

 

運行java項目

數據庫連接成功!!!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM