Revert "Adds "Get Connection String" command (#2108)" (#2116)

This reverts commit c4df7667ff.
This commit is contained in:
Karl Burtram
2018-08-01 19:00:24 -04:00
committed by GitHub
parent c4df7667ff
commit c6d1fa2b7d
16 changed files with 9 additions and 130 deletions

7
src/sql/sqlops.d.ts vendored
View File

@@ -87,11 +87,6 @@ declare module 'sqlops' {
*/
export function getActiveConnections(): Thenable<Connection[]>;
/**
* Get connection string
*/
export function getConnectionString(connectionId: string, includePassword: boolean): Thenable<string>;
/**
* Get the credentials for an active connection
* @param {string} connectionId The id of the connection
@@ -327,8 +322,6 @@ declare module 'sqlops' {
rebuildIntelliSenseCache(connectionUri: string): Thenable<void>;
getConnectionString(connectionUri: string, includePassword: boolean): Thenable<string> ;
registerOnConnectionComplete(handler: (connSummary: ConnectionInfoSummary) => any): void;
registerOnIntelliSenseCacheComplete(handler: (connectionUri: string) => any): void;