JDBC this driver is not configured for integrated authuntication
Hossam El-Gazzaz
Greenhorn
Joined: Oct 22, 2008
Posts: 20
posted
0
i have a little big problem
i use net beans IDE to make a desktop application
i connet with SQL server
first i was having a problem with th port and it's done
and this problem aroused
this driver is not configured for integrated authuntication
so i searched on the web and
found there is a file which called sqljdbc_xa.dll
needed to be added to the path
i dont know what path
i found the file but dont know how to integrate it with the netbeans to establish the connection
i use this connection string jdbc:sqlserver://localhost:1433;databaseName=Clinic;integratedSecurity=true;
in the newconnection dailoge
so can any one help me
thank you
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
7
posted
0
Native libraries generally need to be in a directory that's part of the PATH environment variable. That's independent of whether you're using an IDE or not.
Its not a specific directory, its an environment variable that defines a bunch of locations on the file system where executables and the likes exist. See this.
Alternatively, don;t use windows integrated authentication. SQL Server supports dadtabase authentication too.