Hi to all,
I have the following code:

.............
query = new SQLTemplate("SELECT FOO FROM BAR");
results = ctxt.performQuery(Bar.class, query);
for(int i = 0; i < results.size() - 1; ++i)
{
        Bar f = (Bar)results.get(i);
        ...... (f.getFoo());
        ....................
}

In the Oracle DB the field FOO is a DATE and I map it to java.util.Date.
When I do .getFoo(), the date that I have is without the
hours/minutes/seconds.
Why? How do I resolve it?

Thanks.

Reply via email to