SQL SERVER LINUX

之前在Linux平臺上訪問SQL Server時經常使用的方式有:
http://www.freetds.org/
https://sourceforge.net/projects/jtds/
這方面的資料已經不少了,java方面還有微軟官方的jdbc驅動

如今在微軟的開放戰略下,使用起來更方便了

#mssql jdbc
https://github.com/Microsoft/mssql-jdbc
jdbc開源了

#Linux上運行的服務端
這個是docker上運行的服務端,牛氣,直接在Linux上運行
https://hub.docker.com/r/microsoft/mssql-server-linux/

運行後,訪問時能夠看到其進程的使用
root@a93b94fa0e7a:/#export TERM=linux; top

#Junit單元測試的運行
export mssql_jdbc_test_connection_properties='jdbc:sqlserver://localhost:1433;databaseName=master;username=sa;password=<YourStrong!Passw0rd>;'
export mssql_jdbc_logging='true'

mvn test

#增長了本地運行的簡單分析的fork分支
https://git.oschina.net/wushifeng/mssql-jdbc.git
增長了類圖;idea的完整工程;本地運行的腳本


java

相關文章
相關標籤/搜索