TimeInterval

PostgreSQL time interval isn't same with D std.datetime one. It is simple Duration.

Consists of: microseconds time, day count and month count. Libpq uses different represantation for time, but i store only in usecs format.

Constructors

this
this(ubyte[] arr)
Undocumented in source.

Members

Variables

day
int day;
Undocumented in source.
month
int month;
Undocumented in source.
time
long time;
Undocumented in source.

Meta