Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I believe your crash is caused by some issue with the SQL Server driver when trying to use Integrated Authentication (also referred as Integrated Security)</p> <p>from MS website (emphasis mine)</p> <p>The JDBC driver supports the use of Type 2 integrated authentication on Windows operating systems through the integratedSecurity connection string property. <strong>To use integrated authentication, copy the sqljdbc_auth.dll file to a directory on the Windows system path on the computer where the JDBC driver is installed.</strong></p> <p>The sqljdbc_auth.dll files are installed in the following location: \sqljdbc_\\auth\</p> <p><strong>Note</strong> If you are running a 32-bit Java Virtual Machine (JVM), use the sqljdbc_auth.dll file in the x86 folder, even if the operating system is the x64 version. <strong>If you are running a 64-bit JVM on a x64 processor, use the sqljdbc_auth.dll file in the x64 folder. If you are running a 64-bit JVM on a IA-64 processor, use the sqljdbc_auth.dll file in the IA64 folder</strong>.</p> <p>Alternatively you can set the java.libary.path system property to specify the directory of the sqljdbc_auth.dll. </p> <p>For example, if the JDBC driver is installed in the default directory, you can specify the location of the DLL by using the following virtual machine (VM) argument when the Java application is started: -Djava.library.path=C:\Microsoft SQL Server 2005 JDBC Driver\sqljdbc_\enu\auth\x86</p> <p>{end of quote from MS website}</p> <p><em>PS: To turn off integrated authentication / security change the <strong>integratedSecurity</strong> flag on the JDBC Connection String to false (ie: integratedSecurity=false)</em></p> <p>More info at: </p> <p><a href="http://msdn.microsoft.com/en-us/library/ms378428(v=sql.90).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms378428(v=sql.90).aspx</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload