The Library.InformixTimeStamp data type class represents a time stamp value. More...
Static Public Member Functions | |
_.Library.Status | IsValid (_, _.Library.RawString val) |
Tests if the logical value val, which represents an Informix Timestamp. More... | |
_.Library.String | LogicalToXSD (_, _.Library.TimeStamp val) |
Converts the TimeStamp value to the canonical SOAP encoded value. | |
_.Library.TimeStamp | Normalize (_, _.Library.RawString val) |
Transforms integer values into timestamp. | |
_.Library.TimeStamp | XSDToLogical (_, _.Library.String val) |
Converts the SOAP encoded input dateTime value into a TimeStamp value. | |
Static Public Attributes | |
JSONTYPE = None | |
The Library.InformixTimeStamp data type class represents a time stamp value. More... | |
LARGEQUAL = None | |
The Library.InformixTimeStamp data type is composed of a contiguous sequence of fields that represents. More... | |
XMLTIMEZONE = None | |
XMLTIMEZONE specifies the handling of timezone part of the XML format dateTime. More... | |
XSDTYPE = None | |
Declares the XSD type used when projecting XML Schemas. | |
![]() | |
INDEXNULLMARKER = None | |
Override this parameter value to specify what value should be used as a null marker when a property of the type is used in a subscript of an index map. More... | |
The Library.InformixTimeStamp data type class represents a time stamp value.
The logical value of the Library.InformixTimeStamp data type is in YYYY-MM-DD HH:MM:SS.nnnnnnnnn
format.
|
static |
Tests if the logical value val, which represents an Informix Timestamp.
value in YYYY-MM-DD HH:MM:SS[.nnnnn]
format, is valid. Valid formats include:
Reimplemented from DataType.
|
static |
The Library.InformixTimeStamp data type class represents a time stamp value.
The logical value of the Library.InformixTimeStamp data type is in YYYY-MM-DD HH:MM:SS.nnnnnnnnn
format.
|
static |
The Library.InformixTimeStamp data type is composed of a contiguous sequence of fields that represents.
each component of time you want to record and uses the following syntax: DATETIME largest_qualifier TO smallest_qualifier The largest_qualifier and smallest_qualifier can be any one of the fields:
Qualifier Field Valid Entries YEAR A year numbered from 1 to 9,999 (A.D.) MONTH A month numbered from 1 to 12 DAY A day numbered from 1 to 31, as appropriate to the month HOUR An hour numbered from 0 (midnight) to 23 MINUTE A minute numbered from 0 to 59 SECOND A second numbered from 0 to 59 FRACTION A decimal fraction of a second with up to 5 digits of precision. The default precision is 3 digits (a thousandth of a second). Other precisions are indicated explicitly by writing FRACTION(n), where n is the desired number of digits from 1 to 5. .