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

View File

@@ -181,10 +181,6 @@ export class ExtHostDataProtocol extends ExtHostDataProtocolShape {
return this._resolveProvider<sqlops.ConnectionProvider>(handle).listDatabases(connectionUri);
}
$getConnectionString(handle: number, connectionUri: string, includePassword: boolean): Thenable<string> {
return this._resolveProvider<sqlops.ConnectionProvider>(handle).getConnectionString(connectionUri, includePassword);
}
$rebuildIntelliSenseCache(handle: number, connectionUri: string): Thenable<void> {
return this._resolveProvider<sqlops.ConnectionProvider>(handle).rebuildIntelliSenseCache(connectionUri);
}