我需要连接的数据库是windows 身份验证,而不是SQL Server 身份验证。
eclipse中数据库属性配置
jdbc.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbc.url=jdbc:sqlserver://localhost:1433;database=inventory;integratedSecurity=True
jdbc.username=go\Memo
jdbc.password=
注意:因为windows验证没有密码,所以密码可以空着,integratedSecurity一定要为true,默认integratedSecurity为fasle 意思是禁止用windows身份验证。