Class MSSQLUtils
java.lang.Object
org.odpi.openmetadata.adapters.connectors.mssql.utilities.MSSQLUtils
MSSQLUtils provides simple functions to work with Microsoft SQL Server names and connection strings
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringgetDatabaseURL(String databaseServerURL, String databaseName) Convert the connection string for the database server into a connection string for the database.
-
Constructor Details
-
MSSQLUtils
public MSSQLUtils()
-
-
Method Details
-
getDatabaseURL
Convert the connection string for the database server into a connection string for the database. Microsoft SQL Server JDBC URLs identify the target database through a "databaseName" connection property (eg "jdbc:sqlserver://host:port;databaseName=myDatabase") rather than a URL path segment, so any existing databaseName property on the server URL is replaced rather than split off.- Parameters:
databaseServerURL- connection string used to connect to the Microsoft SQL ServerdatabaseName- name of the database- Returns:
- connection string
-