Udostępnij przez


Database.DatabaseOptions Property

Gets the DatabaseOptions object that contains configuration options for the database.

Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Deklaracja
<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)> _
Public ReadOnly Property DatabaseOptions As DatabaseOptions
[SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)] 
public DatabaseOptions DatabaseOptions { get; }
[SfcObjectAttribute(SfcObjectRelationship::ChildObject, SfcObjectCardinality::One)] 
public:
property DatabaseOptions^ DatabaseOptions {
    DatabaseOptions^ get ();
}
/** @property */
public DatabaseOptions get_DatabaseOptions ()
public function get DatabaseOptions () : DatabaseOptions

Property Value

A DatabaseOptions object value that contains database configuration options.

Remarks

The DatabaseOptions property points to a DatabaseOptions object. The DatabaseOptionsobject contains a set of Boolean properties that control the database options, such as the ANSI, statistics, and mirroring settings.

Example

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Force parameterization on the database by setting database options.
db.DatabaseOptions.IsParameterizationForced = True

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.