- TIMEROUND
double TIMEROUND(double j)
Undocumented in source. Be warned that the author may not have intended to support it.
- TMODULO
void TMODULO(long t, long q, double u)
Undocumented in source. Be warned that the author may not have intended to support it.
- TMODULO
void TMODULO(double t, T q, double u)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
Date convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGAbsTime convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGRelTime convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGTime convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGTimeWithZone convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
TimeInterval convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGInterval convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGTimeStamp convert(ubyte[] val)
Undocumented in source. Be warned that the author may not have intended to support it.
- convert
PGTimeStampWithZone convert(ubyte[] val, IConnection conn)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
- test
void test(ILogger strictLogger, IConnectionPool pool)
Undocumented in source. Be warned that the author may not have intended to support it.
PostgreSQL time types binary format.
There are following supported libpq formats: <ul> <li>date - handles year, month, day. Corresponding D type - std.datetime.Date.</li> <li>abstime - unix time in seconds without timezone. Corresponding D type - PGAbsTime wrapper around std.datetime.SysTime.</li> <li>reltime - seconds count positive or negative for representation of time durations. Corresponding D type - PGRelTime wrapper around core.time.Duration. Note that D's duration holds hnsecs count, but reltime precise at least seconds.</li> <li>time - day time without time zone. Corresponding D type - PGTime wrapper around std.datetime.TimeOfDay.</li> <li>time with zone - day time with time zone. Corresponding D type - PGTimeWithZone structure that can be casted to std.datetime.TimeOfDay and std.datetime.SimpleTimeZone.</li> <li>interval - time duration (modern replacement for reltime). Corresponding D time - TimeInterval that handles microsecond, day and month counts.</li> <li>tinterval - interval between two points in time. Consists of two abstime values: begin and end. Correponding D type - PGInterval wrapper around std.datetime.Interval.</li> </ul>