Describes database supported date and time literals. Each member of the structure is a boolean value indicating whether the feature is supported or not.
You can find more information in comments below.
struct DbSupportedDateTimeLiterals
{
bool Valid; // Indicates whether this structure contains valid data (it was successfully retrieved from data source)
bool Date;
bool Time;
bool Timestamp;
bool IntervalYear;
bool IntervalMonth;
bool IntervalDay;
bool IntervalHour;
bool IntervalMinute;
bool IntervalSecond;
bool IntervalYearToMonth;
bool IntervalDayToHour;
bool IntervalDayToMinute;
bool IntervalDayToSecond;
bool IntervalHourToMinute;
bool IntervalHourToSecond;
bool IntervalMinuteToSecond;
explicit operator String() const;
};
Namespace: | nitisa |
Include: | Nitisa/Db/DbSupportedDateTimeLiterals.h |