IMutableColumn Interface
Represents a mutable SQL Server column.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Public Interface IMutableColumn _
Inherits IColumn, IMutableScalar, IScalar, IMutableMetadataObject, _
IMetadataObject
'Usage
Dim instance As IMutableColumn
public interface IMutableColumn : IColumn,
IMutableScalar, IScalar, IMutableMetadataObject, IMetadataObject
public interface class IMutableColumn : IColumn,
IMutableScalar, IScalar, IMutableMetadataObject, IMetadataObject
type IMutableColumn =
interface
interface IColumn
interface IMutableScalar
interface IScalar
interface IMutableMetadataObject
interface IMetadataObject
end
public interface IMutableColumn extends IColumn, IMutableScalar, IScalar, IMutableMetadataObject, IMetadataObject
The IMutableColumn type exposes the following members.
Properties
Name | Description | |
---|---|---|
Collation | Gets the ICollation object that identifies the collation used by the column. (Inherited from IColumn.) | |
Collation | Gets or sets the ICollation object that identifies the collation used by the column. | |
ComputedColumnInfo | Gets the ComputedColumnInfo object that provides the computed column specification. (Inherited from IColumn.) | |
ComputedColumnInfo | Gets or sets the ComputedColumnInfo object that provides the computed column specification. | |
DataType | Gets or sets the scalar data type. (Inherited from IMutableScalar.) | |
DataType | Gets the scalar data type. (Inherited from IScalar.) | |
DefaultValue | Gets the IDefaultConstraint object that specifies the column default value. (Inherited from IColumn.) | |
DefaultValue | Gets or sets the IDefaultConstraint object that specifies the column default value. | |
IdentityColumnInfo | Gets the IdentityColumnInfo object that provides the column identity specification. (Inherited from IColumn.) | |
IdentityColumnInfo | Gets or sets the IdentityColumnInfo object that provides the column identity specification. | |
InPrimaryKey | Gets a value that indicates whether the column is included in the definition of a PRIMARY KEY or UNIQUE constraint. (Inherited from IColumn.) | |
InPrimaryKey | Gets or sets a value that indicates whether the column is included in the definition of a PRIMARY KEY or UNIQUE constraint. | |
IsColumnSet | Gets a Boolean value that specifies whether the column is a sparse column that is a member of a column set. (Inherited from IColumn.) | |
IsColumnSet | Gets or sets a Boolean value that specifies whether the column is a sparse column that is a member of a column set. | |
IsSparse | Gets a Boolean value that specifies whether the column is a sparse column. (Inherited from IColumn.) | |
IsSparse | Gets or sets a Boolean value that specifies whether the column is a sparse column. | |
Name | Gets the name of the metadata object. (Inherited from IMetadataObject.) | |
Nullable | A value that specifies whether an object is nullable. (Inherited from IMutableScalar.) | |
Nullable | Gets a Boolean value that indicates whether the scalar object is nullable. (Inherited from IScalar.) | |
Parent | Gets the ITabular object that is the parent of this object. (Inherited from IColumn.) | |
RowGuidCol | Gets a value that indicates whether the column is automatically updated with a unique GUID value. (Inherited from IColumn.) | |
RowGuidCol | Gets or sets a value that indicates whether the column is automatically updated with a unique GUID value. | |
ScalarType | Gets the scalar type. (Inherited from IScalar.) |
Top
Methods
Name | Description | |
---|---|---|
Accept<T> | Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.) |
Top