Struct TTimeStamp
Structure to represent PostgreSQL Timestamp with/without time zone
struct TTimeStamp(bool isWithTZ)
;
Constructors
Name | Description |
this
(dt, fractionalSeconds)
|
|
Fields
Name | Type | Description |
date
|
PgDate | Date and time of TimeStamp
|
fracSec
|
Duration | fractional seconds, 1 microsecond resolution
|
time
|
TimeOfDay | |
Methods
Name | Description |
dateTime
()
|
|
earlier
()
|
'-infinity', earlier than all other time stamps
|
infinity
()
|
Returns infinity state
|
isEarlier
()
|
'-infinity'
|
isLater
()
|
'infinity'
|
later
()
|
'infinity', later than all other time stamps
|
max
()
|
Returns the TimeStamp farthest in the future which is representable by TimeStamp.
|
min
()
|
Returns the TimeStamp farthest in the past which is representable by TimeStamp.
|
throwIfNotFitsToDate
()
|
|
toString
()
|
|