JSP中串連SQL 2000資料庫的問題總結

來源:互聯網
上載者:User
js|資料|資料庫|問題 由於系統需求,最近在開發過程中將系統從原來的MySQL轉移到SQL 2000下,其中遇到了諸多問題,花費了我不少時間。現在把我的經驗拿出來告訴大家,好讓大家少走彎路,節約時間。

首先是SQL 2000資料庫的安裝問題,在此我主要講些關於SQL 2000的版本與作業系統的相容性問題:SQL 2000總共有7個不同版本,適應不同等級使用者的需求。

我試了一下,在XP系統下只有“個人開發版”能正常安裝而不出現錯誤,所以大家在安裝時要注意,具體安裝時的配置參照相關說明就可以了。

下面說明如何串連到SQL 2000資料庫,首先當然是要下載JDBC驅動程式,最好去微軟官方網站下載,然後將下載到的三個JAR包放入你的WEB應用的WEB-INF/lib/下。接下來編寫程式進行測試:

/*********************************************** /* /*DBTest.java /* /******************************************* */  import java.sql.*;  public class DBTest {    Connection con;  Statement  sta;  ResultSet  rs;    String driver;  String url;  String user;  String pwd;  public DBTest()  {      driver = "com.microsoft.jdbc.  sqlserver.SQLServerDriver";;      url    = "jdbc:microsoft:sqlserver:  //localhost:1433;DatabaseName =test";      //test為資料庫名      user   = "sa";      pwd    = "sa";      //請更改為你相應的使用者和密碼      init();  }  public void init()  {   try{    Class.forName(driver);    System.out.println("driver is ok");    con = DriverManager.getConnection(url,user,pwd);    System.out.println("conection is ok");       sta = con.createStatement();       rs  = sta.executeQuery   ("select * from room");       while(rs.next())        System.out.println(rs.getInt("roomNum"));    }catch(Exception e)    {     e.printStackTrace();    }  }    public static void main(String args[])  //自己替換[]  {   new DBTest();  } }


按道理講,上邊這段代碼應該沒錯,可首先我們來看一下,如果sqlser伺服器沒有升級到sp3(在使用jdbc時,如果系統是xp或者2003務必要把sqlserver 升級到sp3,往上到處都有下的),我們看看運行結果:

driver is okjava.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.        at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)        at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)        at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)        at com.microsoft.jdbc.sqlserver.tds.TDSConnection.<init>(Unknown Source)        at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source)        at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source)        at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)        at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)        at java.sql.DriverManager.getConnection(DriverManager.java:523)        at java.sql.DriverManager.getConnection(DriverManager.java:171)        at DbTest.init(DbTest.java:32)        at DbTest.<init>(DbTest.java:25)        at DbTest.main(DbTest.java:46)Press any key to continue...


 

[1] [2] 下一頁  



相關文章

聯繫我們

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