SQLServer-----使用jTDS串連SQLServer資料庫,sqlserver-----jtds

來源:互聯網
上載者:User

SQLServer-----使用jTDS串連SQLServer資料庫,sqlserver-----jtds

一、jTDS簡介

          jTDS是一個開放原始碼的100%純Java實現的JDBC3.0驅動,它用於串連 Microsoft SQL Server(6.5,7,2000,2005,2008 和 2012)和Sybase(10 ,11 ,12 ,15)

    jTDS是基於freeTDS的,並且是目前最快的可企業級應用的SQL Server和Sybase的JDBC驅動程式。

     jTDS完全與JDBC3.0相容,支援只向前和可滾動/可更新的結果集(ResultSets),並且支援完全獨立的並行Statements,而且實現了所有的資料庫中繼資料(Database MetaData)和結果集中繼資料(ResultSet MetaData)方法


二、下載jTDS

                maven的pom檔案配置:

<dependency><groupId>net.sourceforge.jtds</groupId><artifactId>jtds</artifactId><version>1.2.4</version></dependency>

                只需要把JAR檔案放在classpath路徑中就可以了


三、用jTDS串連SQLServer資料庫

  (1)、預設資料庫執行個體 

                資料庫URL:1)jdbc:jtds:sqlserver://localhost:1433;DatabaseName=iems

                                        2)jdbc:jtds:sqlserver://localhost:1433/iems

   (2)、非預設資料庫執行個體

                 資料庫URL:1)jdbc:jtds:sqlserver://localhost:1433;DatabaseName=iems;instance=MySQLServer(非默 認執行個體名)

                                         2)jdbc:jtds:sqlserver://localhost:1433/iems;instance=MySQLServer(非預設執行個體名)

                   驅動類:net.sourceforge.jtds.jdbc.Driver

相關文章

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.