mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Introduce 'Command Timeout' option for MSSQL connections (#21734)
This commit is contained in:
@@ -179,6 +179,20 @@
|
|||||||
"isRequired": false,
|
"isRequired": false,
|
||||||
"isArray": false
|
"isArray": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"specialValueType": null,
|
||||||
|
"isIdentity": false,
|
||||||
|
"name": "commandTimeout",
|
||||||
|
"displayName": "%cms.connectionOptions.commandTimeout.displayName%",
|
||||||
|
"description": "%cms.connectionOptions.commandTimeout.description%",
|
||||||
|
"groupName": "%cms.connectionOptions.groupName.initialization%",
|
||||||
|
"valueType": "number",
|
||||||
|
"defaultValue": "30",
|
||||||
|
"objectType": null,
|
||||||
|
"categoryValues": null,
|
||||||
|
"isRequired": false,
|
||||||
|
"isArray": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"specialValueType": null,
|
"specialValueType": null,
|
||||||
"isIdentity": false,
|
"isIdentity": false,
|
||||||
|
|||||||
@@ -62,6 +62,8 @@
|
|||||||
"cms.connectionOptions.applicationIntent.description": "Declares the application workload type when connecting to a server",
|
"cms.connectionOptions.applicationIntent.description": "Declares the application workload type when connecting to a server",
|
||||||
"cms.connectionOptions.connectTimeout.displayName": "Connect timeout",
|
"cms.connectionOptions.connectTimeout.displayName": "Connect timeout",
|
||||||
"cms.connectionOptions.connectTimeout.description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error",
|
"cms.connectionOptions.connectTimeout.description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error",
|
||||||
|
"cms.connectionOptions.commandTimeout.displayName": "Command timeout",
|
||||||
|
"cms.connectionOptions.commandTimeout.description": "The length of time (in seconds) to wait for a command to execute before terminating the attempt and generating an error",
|
||||||
"cms.connectionOptions.currentLanguage.displayName": "Current language",
|
"cms.connectionOptions.currentLanguage.displayName": "Current language",
|
||||||
"cms.connectionOptions.currentLanguage.description": "The SQL Server language record name",
|
"cms.connectionOptions.currentLanguage.description": "The SQL Server language record name",
|
||||||
"cms.connectionOptions.columnEncryptionSetting.displayName": "Column encryption",
|
"cms.connectionOptions.columnEncryptionSetting.displayName": "Column encryption",
|
||||||
|
|||||||
@@ -746,6 +746,20 @@
|
|||||||
"isRequired": false,
|
"isRequired": false,
|
||||||
"isArray": false
|
"isArray": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"specialValueType": null,
|
||||||
|
"isIdentity": false,
|
||||||
|
"name": "commandTimeout",
|
||||||
|
"displayName": "%mssql.connectionOptions.commandTimeout.displayName%",
|
||||||
|
"description": "%mssql.connectionOptions.commandTimeout.description%",
|
||||||
|
"groupName": "%mssql.connectionOptions.groupName.initialization%",
|
||||||
|
"valueType": "number",
|
||||||
|
"defaultValue": "30",
|
||||||
|
"objectType": null,
|
||||||
|
"categoryValues": null,
|
||||||
|
"isRequired": false,
|
||||||
|
"isArray": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"specialValueType": null,
|
"specialValueType": null,
|
||||||
"isIdentity": false,
|
"isIdentity": false,
|
||||||
|
|||||||
@@ -105,6 +105,8 @@
|
|||||||
"mssql.connectionOptions.applicationIntent.description": "Declares the application workload type when connecting to a server",
|
"mssql.connectionOptions.applicationIntent.description": "Declares the application workload type when connecting to a server",
|
||||||
"mssql.connectionOptions.connectTimeout.displayName": "Connect timeout",
|
"mssql.connectionOptions.connectTimeout.displayName": "Connect timeout",
|
||||||
"mssql.connectionOptions.connectTimeout.description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error",
|
"mssql.connectionOptions.connectTimeout.description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error",
|
||||||
|
"mssql.connectionOptions.commandTimeout.displayName": "Command timeout",
|
||||||
|
"mssql.connectionOptions.commandTimeout.description": "The length of time (in seconds) to wait for a command to execute before terminating the attempt and generating an error",
|
||||||
"mssql.connectionOptions.currentLanguage.displayName": "Current language",
|
"mssql.connectionOptions.currentLanguage.displayName": "Current language",
|
||||||
"mssql.connectionOptions.currentLanguage.description": "The SQL Server language record name",
|
"mssql.connectionOptions.currentLanguage.description": "The SQL Server language record name",
|
||||||
"mssql.connectionOptions.columnEncryptionSetting.displayName": "Always Encrypted",
|
"mssql.connectionOptions.columnEncryptionSetting.displayName": "Always Encrypted",
|
||||||
|
|||||||
@@ -143,6 +143,12 @@
|
|||||||
<trans-unit id="cms.connectionOptions.connectTimeout.displayName">
|
<trans-unit id="cms.connectionOptions.connectTimeout.displayName">
|
||||||
<source xml:lang="en">Connect timeout</source>
|
<source xml:lang="en">Connect timeout</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="cms.connectionOptions.commandTimeout.description">
|
||||||
|
<source xml:lang="en">The length of time (in seconds) to wait for a command to execute before terminating the attempt and generating an error</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="cms.connectionOptions.commandTimeout.displayName">
|
||||||
|
<source xml:lang="en">Command timeout</source>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="cms.connectionOptions.connectionName.description">
|
<trans-unit id="cms.connectionOptions.connectionName.description">
|
||||||
<source xml:lang="en">Custom name of the connection</source>
|
<source xml:lang="en">Custom name of the connection</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -208,6 +208,12 @@
|
|||||||
<trans-unit id="mssql.connectionOptions.connectTimeout.displayName">
|
<trans-unit id="mssql.connectionOptions.connectTimeout.displayName">
|
||||||
<source xml:lang="en">Connect timeout</source>
|
<source xml:lang="en">Connect timeout</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.connectionOptions.commandTimeout.description">
|
||||||
|
<source xml:lang="en">The length of time (in seconds) to wait for a command to execute before terminating the attempt and generating an error</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.connectionOptions.commandTimeout.displayName">
|
||||||
|
<source xml:lang="en">Command timeout</source>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="mssql.connectionOptions.connectionName.description">
|
<trans-unit id="mssql.connectionOptions.connectionName.description">
|
||||||
<source xml:lang="en">Custom name of the connection</source>
|
<source xml:lang="en">Custom name of the connection</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
Reference in New Issue
Block a user