Notebooks: Save connection information in metadata (#13060)

* save connection info in notebook metadata

* update attachTo dropdown based on saved alias

* add setting for saving connection (default=false)

* dont show saved conn if seting off + added test

* show conn dialog if save conn name setting off

* address PR comments and fix unit test

* change connectionName to connection_name
This commit is contained in:
Lucy Zhang
2020-10-30 13:56:33 -07:00
committed by GitHub
parent 17073f9d2a
commit 69527f91b0
11 changed files with 144 additions and 21 deletions

View File

@@ -73,6 +73,9 @@ export class NotebookModelStub implements INotebookModel {
get context(): ConnectionProfile {
throw new Error('method not implemented.');
}
get savedConnectionName(): string {
throw new Error('method not implemented.');
}
get providerId(): string {
throw new Error('method not implemented.');
}