Share via


UserDefinedDataType.BindDefault Method (String, String, Boolean)

Binds a default to the user-defined data type.

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

Syntax

'Declaration
Public Sub BindDefault ( _
    defaultSchema As String, _
    defaultName As String, _
    bindColumns As Boolean _
)
'Usage
Dim instance As UserDefinedDataType 
Dim defaultSchema As String 
Dim defaultName As String 
Dim bindColumns As Boolean

instance.BindDefault(defaultSchema, defaultName, _
    bindColumns)
public void BindDefault(
    string defaultSchema,
    string defaultName,
    bool bindColumns
)
public:
void BindDefault(
    String^ defaultSchema, 
    String^ defaultName, 
    bool bindColumns
)
member BindDefault : 
        defaultSchema:string * 
        defaultName:string * 
        bindColumns:bool -> unit
public function BindDefault(
    defaultSchema : String, 
    defaultName : String, 
    bindColumns : boolean
)

Parameters

  • bindColumns
    Type: System.Boolean
    A Boolean value that specifies whether the default is bound to the user-defined data type if it is already bound to a column.If True, the default is bound to the user-defined data type.If False, the default is not bound to the user-defined data type.

Examples

Working with Data Types

See Also

Reference

UserDefinedDataType Class

BindDefault Overload

Microsoft.SqlServer.Management.Smo Namespace

Other Resources

Data Types (Database Engine)

CREATE TYPE (Transact-SQL)