共用方式為


Database.DatabaseOptions 屬性

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

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)> _
Public ReadOnly Property DatabaseOptions As DatabaseOptions 
    Get
'用途
Dim instance As Database 
Dim value As DatabaseOptions 

value = instance.DatabaseOptions
[SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)]
public DatabaseOptions DatabaseOptions { get; }
[SfcObjectAttribute(SfcObjectRelationship::ChildObject, SfcObjectCardinality::One)]
public:
property DatabaseOptions^ DatabaseOptions {
    DatabaseOptions^ get ();
}
[<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)>]
member DatabaseOptions : DatabaseOptions
function get DatabaseOptions () : DatabaseOptions

屬性值

型別:Microsoft.SqlServer.Management.Smo.DatabaseOptions
A DatabaseOptions object value that contains database configuration options.

備註

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

範例

VB

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

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

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

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")

$db.DatabaseOptions.IsParameterizationForced = $TRUE

請參閱

參考

Database 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

使用資料庫物件

設定資料庫選項

建立、改變和移除資料庫

CREATE DATABASE (Transact-SQL)