probably this is a beginner question not sure so posted here.
I have to do 2 things
convert a
string into YYYYMMDDHH24MISS format before passing it to a plsql function
i.e if the date is 12/15/2007
the output should be 20071215141239
i am stuck as to what
pattern to use in SimpleDateFormat
DateFormat df = new SimpleDateFormat("yyyyMMddHH24MISS");
it fails here saying I is invalid.
Please help!!
Thanks in advance