Hi everyone,
Being new to Java, I am finding that things I took for granted in SQL and PL/SQL are far from "second nature" here!
Would someone tell me how would I rewrite the following in Java (for ADF)? My Google and OTN Community searches are coming up empty-handed. Any function in which I pass a date and get a date back for the next Sunday is fine, i.e., I don't need the SQL.
select
next_day(sysdate, 'Sunday') next_sunday
from dual;
Thanks in advance!
James