Class ColumnInfo
- Namespace
- ItTiger.TigerQuery.Events
- Assembly
- ItTiger.TigerQuery.dll
Describes one column in a materialized SQL result set.
public sealed class ColumnInfo
- Inheritance
-
ColumnInfo
- Inherited Members
Properties
ClrType
Gets the CLR type used by SqlDataReader.
public Type ClrType { get; init; }
Property Value
IsNullable
Gets whether the column permits database nulls when reported by the provider.
public bool? IsNullable { get; init; }
Property Value
- bool?
Length
Gets the maximum column size when reported by the provider.
public int? Length { get; init; }
Property Value
- int?
Name
Gets the column name reported by SQL Server.
public string Name { get; init; }
Property Value
Precision
Gets numeric precision when reported by the provider.
public int? Precision { get; init; }
Property Value
- int?
Scale
Gets numeric scale when reported by the provider.
public int? Scale { get; init; }
Property Value
- int?
SqlTypeName
Gets the provider SQL type name, such as
nvarchar or int.public string SqlTypeName { get; init; }