Reverses the order of bits - needed because of dmd Issue 19693 https://issues.dlang.org/show_bug.cgi?id=19693
Converts Nullable!T to Value
Convert money.currency to PG value
Convert std.bitmanip.BitArray to PG value
Converts types implicitly convertible to string to PG Value. Note that if string is null it is written as an empty string. If NULL is a desired DB value, Nullable!string can be used instead.
Constructs Value from array of bytes
Constructs Value from boolean
Constructs Value from Date
Constructs Value from TimeOfDay
Constructs Value from TimeStamp or from TimeStampUTC
Constructs Value from DateTime It uses Timestamp without TZ as a resulting PG type
Constructs Value from UUID
Constructs Value from SysTime Note that SysTime has a precision in hnsecs and PG TimeStamp in usecs. It means that PG value will have 10 times lower precision. And as both types are using long for internal storage it also means that PG TimeStamp can store greater range of values than SysTime.
Constructs Value from Json
Converts dynamic or static array of supported types to the coresponding PG array type value