Search Results for

    Show / Hide Table of Contents

    Class FieldDescription

    A descriptive record on a single field received from PostgreSQL. See RowDescription in https://www.postgresql.org/docs/current/static/protocol-message-formats.html

    Inheritance
    Object
    FieldDescription
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: Npgsql.BackendMessages
    Assembly: Npgsql.dll
    Syntax
    public sealed class FieldDescription

    Properties

    TypeModifier

    The type modifier (see pg_attribute.atttypmod). The meaning of the modifier is type-specific.

    Declaration
    public int TypeModifier { get; set; }
    Property Value
    Type Description
    Int32

    TypeSize

    The data type size (see pg_type.typlen). Note that negative values denote variable-width types.

    Declaration
    public short TypeSize { get; set; }
    Property Value
    Type Description
    Int16

    Methods

    ToString()

    Returns a string that represents the current object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    String
    Overrides
    Object.ToString()
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team