Click or drag to resize
ColumnInfo Class
Represents information about a single column in IStatement result set.
Inheritance Hierarchy
SystemObject
  SQLitePCL.prettyColumnInfo

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public sealed class ColumnInfo : IEquatable<ColumnInfo>, 
	IComparable<ColumnInfo>, IComparable

The ColumnInfo type exposes the following members.

Methods
  NameDescription
Public methodCompareTo
Compares the current object with another object of the same type.
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(ColumnInfo)
Indicates whether the current object is equal to another object of the same type.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Indicates whether the two ColumnInfo instances are equal to each other.
Public operatorStatic memberGreaterThan
Indicates if the the first ColumnInfo is greater than the second.
Public operatorStatic memberGreaterThanOrEqual
Indicates if the the first ColumnInfo is greater than or equal to the second.
Public operatorStatic memberInequality
Indicates whether the two ColumnInfo instances are not equal each other.
Public operatorStatic memberLessThan
Indicates if the the first ColumnInfo is less than the second.
Public operatorStatic memberLessThanOrEqual
Indicates if the the first ColumnInfo is less than or equal to the second.
Top
Properties
  NameDescription
Public propertyDatabaseName
The database that is the origin of this particular result column.
Public propertyDeclaredType
Returns the declared type of a column in a result set or null if no type is declared.
Public propertyName
The column name.
Public propertyOriginName
The column that is the origin of this particular result column.
Public propertyTableName
The table that is the origin of this particular result column.
Top
See Also