Server.GetDefaultInitFields Method
Returns the property types that are initialized by default when the specified object is initialized.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
語法
'宣告
Public Function GetDefaultInitFields ( _
typeObject As Type _
) As StringCollection
public StringCollection GetDefaultInitFields (
Type typeObject
)
public:
StringCollection^ GetDefaultInitFields (
Type^ typeObject
)
public StringCollection GetDefaultInitFields (
Type typeObject
)
public function GetDefaultInitFields (
typeObject : Type
) : StringCollection
參數
- typeObject
A Type system object that specifies the type of object.
傳回值
A StringCollection system object that contains a list of property types that are initialized by default when the specified object is initialized.
備註
更新的文字:
This method is used to control the way in which object properties are initialized in an SMO application. You can use this method to optimize your SMO application.
只有 Microsoft .NET Framework 2.0 版支援此命名空間、類別或成員。
範例
'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")
'Assign the Table object type to a System.Type object variable.
Dim tb As Table
Dim typ As Type
tb = New Table
typ = tb.GetType
'Assign the current default initialization fields for the Table object type to a
'StringCollection object variable.
Dim sc As StringCollection
sc = srv.GetDefaultInitFields(typ)
'Set the default initialization fields for the Table object type to the CreateDate property.
srv.SetDefaultInitFields(typ, "CreateDate")
'Retrieve the Schema, Name, and CreateDate properties for every table in AdventureWorks.
'Note that the improvement in performance can be viewed in SQL Profiler.
For Each tb In db.Tables
Console.WriteLine(tb.Schema + "." + tb.Name + " " + tb.CreateDate)
Next
'Set the default initialization fields for the Table object type back to the original settings.
srv.SetDefaultInitFields(typ, sc)
執行緒安全性
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.
平台
開發平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
目標平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
請參閱
參考
Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace
其他資源
How to: Set Default Initialization Fields in Visual Basic .NET
Setting Properties
Calling Methods
管理伺服器