mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 17:23:53 -05:00
Refactor vscode-mssql sql bindings logic to sql bindings ext (#18725)
* wip for refactor of mssql to sql-bindings * remove STS dependency * work to bring function over and setup with vscodeMsql APIs * copy typings from vscode-mssql
This commit is contained in:
@@ -84,6 +84,14 @@ declare module 'vscode-mssql' {
|
||||
* @returns connection string for the connection
|
||||
*/
|
||||
getConnectionString(connectionUriOrDetails: string | ConnectionDetails, includePassword?: boolean, includeApplicationName?: boolean): Promise<string>;
|
||||
|
||||
/**
|
||||
* Set connection details for the provided connection info
|
||||
* Able to use this for getConnectionString requests to STS that require ConnectionDetails type
|
||||
* @param connectionInfo connection info of the connection
|
||||
* @returns connection details credentials for the connection
|
||||
*/
|
||||
createConnectionDetails(connectionInfo: IConnectionInfo): ConnectionDetails;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -120,6 +128,11 @@ declare module 'vscode-mssql' {
|
||||
*/
|
||||
accountId: string | undefined;
|
||||
|
||||
/**
|
||||
* tenantId
|
||||
*/
|
||||
tenantId: string | undefined;
|
||||
|
||||
/**
|
||||
* The port number to connect to.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user