You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rootCmd.Flags().StringVarP(&args.InitialQuery, "initial-query", "q", "", localizer.Sprintf("Executes a query when sqlcmd starts, but does not exit sqlcmd when the query has finished running. Multiple-semicolon-delimited queries can be executed"))
412
413
rootCmd.Flags().StringVarP(&args.Query, "query", "Q", "", localizer.Sprintf("Executes a query when sqlcmd starts and then immediately exits sqlcmd. Multiple-semicolon-delimited queries can be executed"))
413
414
rootCmd.Flags().StringVarP(&args.Server, "server", "S", "", localizer.Sprintf("%s Specifies the instance of SQL Server to which to connect. It sets the sqlcmd scripting variable %s.", localizer.ConnStrPattern, localizer.ServerEnvVar))
415
+
rootCmd.Flags().StringVar(&args.ServerNameOverride, "server-name", "", localizer.Sprintf("Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server."))
414
416
_=rootCmd.Flags().IntP(disableCmdAndWarn, "X", 0, localizer.Sprintf("%s Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.", "-X[1]"))
Copy file name to clipboardExpand all lines: internal/translations/locales/de-DE/out.gotext.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2672,6 +2672,11 @@
2672
2672
],
2673
2673
"fuzzy": true
2674
2674
},
2675
+
{
2676
+
"id": "Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.",
2677
+
"message": "Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.",
2678
+
"translation": ""
2679
+
},
2675
2680
{
2676
2681
"id": "{_X1} Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.",
2677
2682
"message": "{_X1} Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.",
@@ -3671,6 +3676,11 @@
3671
3676
],
3672
3677
"fuzzy": true
3673
3678
},
3679
+
{
3680
+
"id": "Server name override is not supported with the current authentication method",
3681
+
"message": "Server name override is not supported with the current authentication method",
Copy file name to clipboardExpand all lines: internal/translations/locales/en-US/out.gotext.json
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2674,6 +2674,13 @@
2674
2674
],
2675
2675
"fuzzy": true
2676
2676
},
2677
+
{
2678
+
"id": "Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.",
2679
+
"message": "Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.",
2680
+
"translation": "Specifies the server name to use for authentication when tunneling through a proxy. Use with -S to specify the dial address separately from the server name sent to SQL Server.",
2681
+
"translatorComment": "Copied from source.",
2682
+
"fuzzy": true
2683
+
},
2677
2684
{
2678
2685
"id": "{_X1} Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.",
2679
2686
"message": "{_X1} Disables commands that might compromise system security. Passing 1 tells sqlcmd to exit when disabled commands are run.",
@@ -3675,6 +3682,13 @@
3675
3682
],
3676
3683
"fuzzy": true
3677
3684
},
3685
+
{
3686
+
"id": "Server name override is not supported with the current authentication method",
3687
+
"message": "Server name override is not supported with the current authentication method",
3688
+
"translation": "Server name override is not supported with the current authentication method",
0 commit comments