Search
 
SCRIPT & CODE EXAMPLE
 

SQL

PostgreSQL types and C# types

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
Comment

PREVIOUS NEXT
Code Example
Sql :: select distinct after join 
Sql :: mysql login to a specific database terminal 
Sql :: postgress connection refused 
Sql :: oracle index hint 
Sql :: alter table myisam to innodb 
Sql :: android studio SQLiteDatabase delete all data in database 
Sql :: database timezone 
Sql :: postgres like case insensitive 
Sql :: set value to null sql 
Sql :: mysql remove records 
Sql :: Create boolean column in MySQL with false as default value? 
Sql :: postgres top 10 
Sql :: oracle array 
Sql :: sqlite unique multiple columns 
Sql :: sqlite3 turn off case sensitive 
Sql :: what is datetime in sql server 
Sql :: mysql find duplicates 
Sql :: postgresql full text search 
Sql :: inner join 
Sql :: athena create table 
Sql :: how to run a function in sql 
Sql :: mysql how to use FIND_IN_SET function in WHERE clause ? 
Sql :: get largest number in database sql 
Sql :: postgres data location 
Sql :: python mysql create table if not exists 
Sql :: get table column names sql 
Sql :: table structure in sql 
Sql :: truncate table in sql 
Sql :: access no password in mysql mamp 
Sql :: sqlite 3 mac 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =