Class SQLDateTimeConstants
- java.lang.Object
-
- org.silverpeas.core.persistence.datasource.SQLDateTimeConstants
-
public class SQLDateTimeConstants extends Object
Some constants to take care when converting dates and date times to their database counterpart.- Author:
- mmoquillon
-
-
Field Summary
Fields Modifier and Type Field Description static Date
MAX_DATE
The maximum date for any of our supported data sources.static Timestamp
MAX_TIMESTAMP
The maximum timestamp for any of our supported data sources.static Date
MIN_DATE
The minimum date for any of our supported data sources.static Timestamp
MIN_TIMESTAMP
The minimum timestamp for any of our supported data sources.
-
-
-
Field Detail
-
MIN_DATE
public static final Date MIN_DATE
The minimum date for any of our supported data sources. Currently, it is based upon the more limited ones, that are Oracle and MS-SQLServer.
-
MAX_DATE
public static final Date MAX_DATE
The maximum date for any of our supported data sources. Currently, it is based upon the more limited ones, that are Oracle and MS-SQLServer.
-
MIN_TIMESTAMP
public static final Timestamp MIN_TIMESTAMP
The minimum timestamp for any of our supported data sources. Currently, it is based upon the more limited ones, that are Oracle and MS-SQLServer.
-
MAX_TIMESTAMP
public static final Timestamp MAX_TIMESTAMP
The maximum timestamp for any of our supported data sources. Currently, it is based upon the more limited ones, that are Oracle and MS-SQLServer.
-
-