Udostępnij przez


Database.UserDefinedTableTypes Property

Represents a collection of UserDefinedTableType objects. Each UserDefinedTableType object represents a user-defined table type on the database.

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

Syntax

'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, GetType(UserDefinedTableType))> _
Public ReadOnly Property UserDefinedTableTypes As UserDefinedTableTypeCollection
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(UserDefinedTableType))] 
public UserDefinedTableTypeCollection UserDefinedTableTypes { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, typeof(UserDefinedTableType))] 
public:
property UserDefinedTableTypeCollection^ UserDefinedTableTypes {
    UserDefinedTableTypeCollection^ get ();
}
/** @property */
public UserDefinedTableTypeCollection get_UserDefinedTableTypes ()
public function get UserDefinedTableTypes () : UserDefinedTableTypeCollection

Property Value

A UserDefinedTableTypeCollection object that represents all the user-defined table types on the database.

Remarks

Specific user-defined types can be referenced by using this collection by specifying the name of the user-defined table type. To add a new user-defined table type to the collection, call the user-defined table type constructor.

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")

'Display all the user defined table types in the database.
Dim udtt As UserDefinedTableType
For Each udtt In db.UserDefinedTableTypes
   Console.WriteLine(udtt.Name)
Next

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.