I am trying to configure a new tool from JetBrains : DataGrip to work with a local installation of MS SQL Server 2014 Express . I spent some time trying to "convert" the ms connection string to jdbc, but no luck. I can connect using MS SQL Server 2014 management Studio .
So here is my connection string:
"Data Source=MyPCName\MySQLInstanceName;Initial Catalog=MyDataBaseNameA3D;Integrated Security=True;"
My best guess was based on the msdn example:
jdbc:sqlserver://[serverName[\instanceName][:portNumber]][;property=value[;property=value]]
MSDN: Connect to SQL Server using the JDBC driver. Create connection url
jdbc:sqlserver://MyPCName\MySQLInstanceName:1433;databaseName=MyDataBaseNameA3D;integratedSecurity=true;
Has anyone resolved such a problem and maybe can get me through the setup steps?
Otherwise, I just throw this tool away. I have spent enough time on what should be very simplified.
Yuriy source share