Click or drag to resize
TableManagerGetColumnInformation 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 DataSet GetColumnInformation(
	string tableName,
	string columnName = null
)

Parameters

tableName
Type: SystemString
Database table name
columnName (Optional)
Type: SystemString
Database table column name

Return Value

Type: DataSet
Remarks
If columnName is not specified data for all table columns are returned.
See Also