| Author |
about dates
|
volsteni raj
Greenhorn
Joined: Jan 27, 2005
Posts: 3
|
|
how can i find difference between two dates? how can i store date object in oracle database
|
 |
Carol Enderlin
drifter
Ranch Hand
Joined: Oct 10, 2000
Posts: 1348
|
|
For the first question, check this thread that just discussed dates. Second question: jdbc [ January 27, 2005: Message edited by: Carol Enderlin ]
|
 |
vinod kumar
Greenhorn
Joined: Jan 24, 2005
Posts: 15
|
|
The defference between two dates(two Date objects) u can findout by first getting the defference of milliseconds between the dates long defferenceInMilliSeconds=Date1.getTime()-Date2.getTime(); you can convert this defference to hours or days as u want for the second qst u can use JDBC
|
 |
 |
|
|
subject: about dates
|
|
|