Stored Proc Column Element
Attributes
Attribute | API Type | Default | Description |
---|---|---|---|
Name | String | Specifies the name of the object. This name can be used to reference this object from anywhere else in the program. This is a required property | |
CustomType | String | This value specifies a the type of a column when the main column type has been set to Custom. A complete list of allowed types is available at http://msdn.microsoft.com/de-de/library/ms127023(SQL.90).aspx. | |
DataType | DbType | Int32 | This value specifies the type of the stored procedure column node using the unified type system. |
Default | String | This value specifies a default value for the column using T-Sql expression syntax. | |
IsOutput | Boolean | false | This value specifies whether the stored procedure column supports output of the value to the caller of the stored procedure. |
IsReadOnly | Boolean | false | This value specifies whether the value of the stored procedure column is read-only. |
Length | Int32 | 0 | This value specifies the length of the column type. This property only applies to column types that support a length specification, such as string and binary types. |
Precision | Int32 | -1 | This value specifies the precision or the number of digits in a value. This property only applies to column types that support precision, such as decimal. |
Scale | Int32 | -1 | This value specifies the scale or the number of digits to the right of the decimal point in a value. This property only applies to column types that support precision, such as decimal. |
Collection Children
Child | API Type | Description |
---|---|---|
<Annotations> <Annotation /> </Annotations> | AstAnnotationNode | This is a collection of annotation items that can be used to specify documentation, tags, or other information. Annotations are particularly useful for storing information about nodes that can be used by BimlScript code. |