I'd like to insert the value derived from this JXDatePicker into a Date field in Java DB. How should I get ONLY date off this controller in a way that time is represented as dd/mm/yyyy and nothing else??!
|
You can get the Try:
Notice that instead of the Follow-Up I feel compelled to mention, for completeness, that it is generally a bad idea to put formatted strings representing dates into a database; what happens when you want to display it in another format, for instance, or do a simple comparison using One way to store date/times is to use the timestamp that you get from
Storing this representation of a
Or use the column in
It also makes it somewhat portable so you can, for instance, send the timestamp to a thin client that is built using a different technology. That being said, it is also in your best interest to use a date and time library like Joda Time instead of using the unreliable and inconvenient Java |
|||||||||
|