Database.DatabaseOptions Property
SQL Server 2005
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)
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Updated text: 17 July 2006
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.
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
'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
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
