sql >> データベース >  >> RDS >> PostgreSQL

PostgreSQLおよびC#のデータ型

    PostgreSQL用の.NETデータプロバイダーの実装であるNpgsqlのドキュメントを調べて何かを見つけることができるかもしれません。

    ドキュメントのこのページには、実際に探しているものの完全な表が含まれています。 「4.現在のNpgsqlステータス」-「サポートされているデータ型」を検索します。 .NETには、すべてのPostgreSQLデータ型とそれに対応するデータを含む優れたテーブルがあります。

    Postgresql  NpgsqlDbType System.DbType Enum .Net System Type
    ----------  ------------ ------------------ ----------------
    int8        Bigint       Int64              Int64
    bool        Boolean      Boolean            Boolean
    bytea       Bytea        Binary             Byte[]
    date        Date         Date               DateTime
    float8      Double       Double             Double
    int4        Integer      Int32              Int32
    money       Money        Decimal            Decimal
    numeric     Numeric      Decimal            Decimal
    float4      Real         Single             Single
    int2        Smallint     Int16              Int16
    text        Text         String             String
    time        Time         Time               DateTime
    timetz      Time         Time               DateTime
    timestamp   Timestamp    DateTime           DateTime
    timestamptz TimestampTZ  DateTime           DateTime
    interval    Interval     Object             TimeSpan
    varchar     Varchar      String             String
    inet        Inet         Object             IPAddress
    bit         Bit          Boolean            Boolean
    uuid        Uuid         Guid               Guid
    array       Array        Object             Array
    



    1. SQLServerの行オフセット

    2. SalesforceおよびActiveDirectoryフェデレーションサービス(ADFS)シングルサインオン(SSO)でのODBCの使用

    3. Oracle21cをSQLServerに接続する

    4. SQL:変数に基づいて動的列名を選択します