Interface ColumnInterface

Summary

Fully Qualified Name: Zend\Db\Sql\Ddl\Column\ColumnInterface
Extends: ExpressionInterface

Description

Interface ColumnInterface describes the protocol on how Column objects interact

Methods

Name Description Defined By
getDefault() ColumnInterface
getExpressionData() ExpressionInterface
getName() ColumnInterface
getOptions() ColumnInterface
isNullable() ColumnInterface

Method Details

getDefault()

Returns: null|string|int

getExpressionData()

Returns: array of array|string should return an array in the format: array ( // a sprintf formatted string string $specification, // the values for the above sprintf formatted string array $values, // an array of equal length of the $values array, with either TYPE_IDENTIFIER or TYPE_VALUE for each value array $types, )

getName()

Returns: string

getOptions()

Returns: array

isNullable()

Returns: bool

Top