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
    Namespace: Npgsql.BackendMessages
    Assembly: Npgsql.dll
    Syntax
    public sealed class FieldDescription

    Properties

    | Improve this Doc View Source

    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
    int
    | Improve this Doc View Source

    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
    short

    Methods

    | Improve this Doc View Source

    ToString()

    Returns a string that represents the current object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team