Hi , this question goes to Kevin Crow (StataCorp) , but may interest others.
when using
the driver returns
however, helps file says:
Any thoughts in here?
thanks
when using
Code:
local url "jdbc:sqlserver://serverName....; Authentication=ActiveDirectoryIntegrated" local driverclass "com.microsoft.sqlserver.jdbc.SQLServerDriver" local user "a@b" local pass "x" jdbc connect, jarpath("`jarpath'") driverclass("`driverclass'") url("`url'") user("`user'") password("`pass'") jdbc showdbs
connection failed
It is not possible to use "Authentication=ActiveDirectoryIntegrated" with the keyword "User", "UserName" or "Password" in the connection string]
It is not possible to use "Authentication=ActiveDirectoryIntegrated" with the keyword "User", "UserName" or "Password" in the connection string]
Either jar("JarFileName") or jarpath("DirectoryName") and driverclass("ClassName"), url("URL"), user("UserID"), and password("Password") are
required with jdbc add. These options are also required with jdbc connect when DataSourceName is not specifie
required with jdbc add. These options are also required with jdbc connect when DataSourceName is not specifie
thanks