Sqlproj - Saving the connection after db is deployed to docker container (#17294)

This commit is contained in:
Leila Lali
2021-10-07 15:48:09 -07:00
committed by GitHub
parent dd433316c2
commit d4b556c09c
3 changed files with 21 additions and 11 deletions

View File

@@ -54,9 +54,10 @@ declare module 'vscode-mssql' {
* Attempts to create a new connection for the given connection info. An error is thrown and displayed
* to the user if an error occurs while connecting.
* @param connectionInfo The connection info
* @param saveConnection Save the connection profile if sets to true
* @returns The URI associated with this connection
*/
connect(connectionInfo: IConnectionInfo): Promise<string>;
connect(connectionInfo: IConnectionInfo, saveConnection?: boolean): Promise<string>;
/**
* Lists the databases for a given connection. Must be given an already-opened connection to succeed.