Hi I had a question about DB2 dates.
I am trying to understand how the flow works in a system.
Firstly date is stored in the database as a 21 character format an example is
"20080808145325 00+0000" it seems to be of the form "yyyyddMMhhmm.. ..".
The dates are stored with
And its accessed using
Now the date is passed as a date object in the form of milli sec since epoch.
I am not able to understand how the comparison is taking place and all.
Can anyone explain this to me please.
Thank you very much.
I am trying to understand how the flow works in a system.
Firstly date is stored in the database as a 21 character format an example is
"20080808145325 00+0000" it seems to be of the form "yyyyddMMhhmm.. ..".
The dates are stored with
Code:
INSERT INTO TABLE1( DATE_TO) VALUES( #dateTo:CHAR#)
Code:
<isNotNull property="StartDateTo" prepend="AND"> DATE_TO <= #StartDateTo# </isNotNull>
I am not able to understand how the comparison is taking place and all.
Can anyone explain this to me please.
Thank you very much.
Comment