Click or drag to resize
AbstractTableManagerGetColumnInformation Method
Returns DataSet with specified table column information retrieved from database information schema. Returns columns ColumnName, DataType, DataSize, DataPrecision, Nullable, DefaultValue.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public virtual DataSet GetColumnInformation(
	string tableName,
	string columnName
)

Parameters

tableName
Type: SystemString
Database table name
columnName
Type: SystemString
Database table column name

Return Value

Type: DataSet

Implements

ITableManagerGetColumnInformation(String, String)
Remarks
If columnName is not specified data for all table columns are returned.
See Also