Class SqlServerConnectionsProperties
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the server connections properties of a SQL instance.
public class SqlServerConnectionsProperties : BypassSection
- Inheritance
-
SqlServerConnectionsProperties
- Inherited Members
Constructors
SqlServerConnectionsProperties()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlServerConnectionsProperties class.
public SqlServerConnectionsProperties()
Properties
AllowRemoteConnections
Gets or sets whether remote connections are allowed to the server.
public BooleanOption AllowRemoteConnections { get; set; }
Property Value
AnsiNullDefaultOff
Gets or sets whether the ANSI null default of option is enabled.
public BooleanOption AnsiNullDefaultOff { get; set; }
Property Value
AnsiNullDefaultOn
Gets or sets whether the ANSI null default on option is enabled.
public BooleanOption AnsiNullDefaultOn { get; set; }
Property Value
AnsiNulls
Gets or sets whether the ANSI NULLs option is enabled.
public BooleanOption AnsiNulls { get; set; }
Property Value
AnsiPadding
Gets or sets whether the ANSI padding option is enabled.
public BooleanOption AnsiPadding { get; set; }
Property Value
AnsiWarnings
Gets or sets whether the ANSI warnings option is enabled.
public BooleanOption AnsiWarnings { get; set; }
Property Value
ArithmeticAbort
Gets or sets whether the arithmetic abort option is enabled.
public BooleanOption ArithmeticAbort { get; set; }
Property Value
ArithmeticIgnore
Gets or sets whether the arithmetic ignore option is enabled.
public BooleanOption ArithmeticIgnore { get; set; }
Property Value
ConcatenateNullYieldsNull
Gets or sets whether the concatenate NULL yields NULL option is enabled.
public BooleanOption ConcatenateNullYieldsNull { get; set; }
Property Value
CursorCloseOnCommit
Gets or sets whether the cursor close on commit option is enabled.
public BooleanOption CursorCloseOnCommit { get; set; }
Property Value
ImplicitTransactions
Gets or sets whether implicit transactions are enabled.
public BooleanOption ImplicitTransactions { get; set; }
Property Value
MaxConcurrentConnections
Gets or sets the maximum number of concurrent connections.
public int MaxConcurrentConnections { get; set; }
Property Value
MaxConcurrentConnectionsString
Gets the maximum number of concurrent connections.
public string MaxConcurrentConnectionsString { get; set; }
Property Value
NoCount
Gets or sets whether the no count option is enabled.
public BooleanOption NoCount { get; set; }
Property Value
NumericRoundAbort
Gets or sets whether the numeric round abort option is enabled.
public BooleanOption NumericRoundAbort { get; set; }
Property Value
QueryGovernorCostLimit
Gets or sets the query governor cost limit in seconds.
public int QueryGovernorCostLimit { get; set; }
Property Value
QueryGovernorString
Gets the query governor setting.
public string QueryGovernorString { get; set; }
Property Value
QuotedIdentifier
Gets or sets whether the quoted identifier option is enabled.
public BooleanOption QuotedIdentifier { get; set; }
Property Value
RemoteProcTrans
Gets or sets whether to require distributed transactions for server-to-server communications.
public BooleanOption RemoteProcTrans { get; set; }
Property Value
RemoteQueryTimeout
Gets or sets the remote query timeout in seconds.
public int RemoteQueryTimeout { get; set; }
Property Value
RemoteQueryTimeoutString
Getsthe remote query timeout as a human readable string.
public string RemoteQueryTimeoutString { get; set; }
Property Value
XactAbort
Gets or sets whether the xact abort (AbortTransactionOnError) option is enabled.
public BooleanOption XactAbort { get; set; }
Property Value
Methods
ToString()
Returns the connections properties as a human readable string.
public override string ToString()
Returns
- string
The connections properties as a human readable string.