PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Typy danych PostgreSQL i C#

Może znajdziesz coś, przeglądając dokumentację Npgsql, która jest implementacją dostawcy danych .NET dla PostgreSQL.

Ta strona dokumentacji zawiera kompletną tabelę tego, czego szukasz. Wyszukaj „4. Aktualny stan Npgsql” - „Obsługiwane typy danych”. Istnieje ładna tabela ze wszystkimi typami danych PostgreSQL i ich odpowiednikami w .NET.

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Uprawnienia użytkownika PostgreSQL

  2. Konwertuj django RawQuerySet na Queryset

  3. Jak działa pg_sleep_for() w PostgreSQL

  4. Alternatywny format wyjściowy dla psql

  5. Jaka jest kolejność rekordów w tabeli ze złożonym kluczem podstawowym?