본문 바로가기
  • 아하하
개발/개발툴

[ERMaster] SQL Server 2005 연결하기

by 쥬쥬파파 2018. 4. 26.

ERMaster 로 MS Sqlserver 2005 에 테이블 정보를 가져올때 오류...


오래된 버전이어서 mssql jdbc를 이용하면 아래와 같은 오류가 발생...


이 드라이버는 SQL Server 버전 8을(를) 지원하지 않습니다.




jTDS JDBC Driver 를 이용하여 접속하여 테이블 정보를 가져온다.



Microsoft JDBC Driver for SQL Server

The Microsoft JDBC Driver for SQL Server is available to all SQL Server users at no additional charge from Microsoft. It provides access to SQL Server 2000-2016 from any Java application.

Required File(s)
sqljdbc4.jar

Default Driver Class
com.microsoft.sqlserver.jdbc.SQLServerDriver

JDBC URL Format
jdbc:sqlserver://<host>[:<port1433>];databaseName=<database>

More information and download
Microsoft

jTDS JDBC Driver

jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000-2016) and Sybase (10, 11, 12, 15).

 This driver is co-packaged with DbVisualizer.

Required File(s)
jtds-1.3.1.jar

Default Driver Class
net.sourceforge.jtds.jdbc.Driver

JDBC URL Format
jdbc:jtds:sqlserver://<host>[:<port>][/<database>] 

Example:
jdbc:jtds:sqlserver://localhost:1433/myDB
jdbc:jtds:sqlserver://192.168.10.201:1433/SAMPLE




'개발 > 개발툴' 카테고리의 다른 글

Oracle XE 설치시 http 8080포트 변경  (0) 2018.06.12
ERWIN FTP 사이트 주소  (0) 2018.06.05
[iReport] 팁  (0) 2018.04.25
[iReport] Detail band fixed.  (0) 2018.04.25
[iReport] 보고서 밴드 특성  (0) 2018.04.18