Skip to content

Commit

Permalink
Fixing up missing info in the capabilities call (#2386)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjin authored Aug 23, 2024
1 parent a6cdd85 commit 18ffbe6
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal static ConnectionProviderOptions BuildConnectionProviderOptions()
{
Name = "database",
DisplayName = "Database name",
Description = "The name of the initial catalog or database int the data source",
Description = "The name of the initial catalog or database in the data source",
ValueType = ConnectionOption.ValueTypeString,
SpecialValueType = ConnectionOption.SpecialValueDatabaseName,
IsIdentity = true,
Expand Down Expand Up @@ -185,7 +185,7 @@ internal static ConnectionProviderOptions BuildConnectionProviderOptions()
new ConnectionOption
{
Name = "hostNameInCertificate",
DisplayName = "HostNameInCertificate",
DisplayName = "Host name in certificate",
Description = "Specifies host name in certificate to be used for certificate validation, when encryption is enabled.",
GroupName = "Security",
ValueType = ConnectionOption.ValueTypeString,
Expand All @@ -210,7 +210,8 @@ internal static ConnectionProviderOptions BuildConnectionProviderOptions()
{
Name = "port",
DisplayName = "Port",
ValueType = ConnectionOption.ValueTypeNumber
ValueType = ConnectionOption.ValueTypeNumber,
GroupName = "General"
},
new ConnectionOption
{
Expand Down Expand Up @@ -292,21 +293,23 @@ internal static ConnectionProviderOptions BuildConnectionProviderOptions()
{
Name = "attachDbFilename",
DisplayName = "Attach DB filename",
ValueType = ConnectionOption.ValueTypeString
ValueType = ConnectionOption.ValueTypeString,
GroupName = "Source"
},
new ConnectionOption
{
Name = "failoverPartner",
DisplayName = "Failover partner",
Description = "the name or network address of the instance of SQL Server that acts as a failover partner",
ValueType = ConnectionOption.ValueTypeString,
GroupName = " Source"
GroupName = "Source"
},
new ConnectionOption
{
Name = "multiSubnetFailover",
DisplayName = "Multi subnet failover",
ValueType = ConnectionOption.ValueTypeBoolean
ValueType = ConnectionOption.ValueTypeBoolean,
GroupName = "General"
},
new ConnectionOption
{
Expand Down

0 comments on commit 18ffbe6

Please sign in to comment.