SqliteColumn¶
Namespace: ThinkGeo.Core
public class SqliteColumn : FeatureSourceColumn
Inheritance Object → FeatureSourceColumn → SqliteColumn
Properties¶
ColumnType¶
This property returns the type of the column.
public SqliteColumnType ColumnType { get; set; }
Property Value¶
Remarks:
None
ColumnName¶
This property returns the name of the column.
public string ColumnName { get; set; }
Property Value¶
Remarks:
None
TypeName¶
This property returns the type name of the column.
public string TypeName { get; set; }
Property Value¶
Remarks:
This property is freeform and the type name is not tied to anything. It is wise to try and use familiar type names such as string, integer, date, etc., although it may not fit every different type of FeatureSource. We suggest thar you avoid using this property unless you know the types beforehand or simply want them for display purposes.
MaxLength¶
This property returns the maximum length of the column.
public int MaxLength { get; set; }
Property Value¶
Remarks:
The maximum length is user defined and not in any way enforced in our default FeatureSource implementation. It is mainly for display purposes or when dealing with a known Feature Source type.
Constructors¶
SqliteColumn()¶
This method is the constructor for the DbfColumn.
public SqliteColumn()
Remarks:
None
SqliteColumn(String, SqliteColumnType)¶
public SqliteColumn(string columnName, SqliteColumnType columnType)
Parameters¶
columnName
String
columnType
SqliteColumnType