How to connect to Microsoft SQL server 2014 local DB from Open source soap UI version?
Hello,
I'm trying to connect to Microsoft sql server 2014 local Db from Soap UI open version, However it's not working.
Below are the details :-
SQL server 2014 Express Local DB
ServerName - (localdb)\mssqllocaldb
Instance Name - LOCALDB#DCD9BDD9
Credentials - Windows Authentication
I'm using below Driver and Connection String in Soap UI JDBC step.
Driver - com.microsoft.sqlserver.jdbc.SQLServerDriver
Connection String - jdbc:sqlserver://(localdb)\mssqllocaldb\LOCALDB#DCD9BDD9;databaseName=test;integratedSecurity=true
I'm getting below error
Can't get the Connection for specified properties; com.microsoft.sqlserver.jdbc.SQLServerException: The connection to the host (localdb)mssqllocaldb, named instance localdb#dcd9bdd9 failed. Error: "java.net.UnknownHostException: (localdb)mssqllocaldb". Verify the server and instance names and check that no firewall is blocking UDP traffic to port 1434. For SQL Server 2005 or later, verify that the SQL Server Browser Service is running on the host.
Could you please help me out what's going wrong with my connection string or with driver?