Add Delete Database dialog to enable additional deletion options (#24109)

This commit is contained in:
Cory Rivera
2023-08-14 11:20:08 -07:00
committed by GitHub
parent 6acc9f4a75
commit 22e2b0df9f
10 changed files with 165 additions and 5 deletions

View File

@@ -984,6 +984,8 @@ declare module 'mssql' {
* @returns A string value representing the generated TSQL query if generateScript was set to true, and an empty string otherwise.
*/
detachDatabase(connectionUri: string, objectUrn: string, dropConnections: boolean, updateStatistics: boolean, generateScript: boolean): Thenable<string>;
deleteDatabase(connectionUri: string, objectUrn: string, dropConnections: boolean, deleteBackupHistory: boolean, generateScript: boolean): Thenable<string>;
}
// Object Management - End.
}