Possible Duplicate:
TO_DATE issue with Oracle DBMS_SQL.EXECUTE function
I am using a function that takes date as varchar input and the n passes it to another procedure.I could see that the time past associated with the date is not getting inserted at some scenario's. please find below my function
iv_plsql4 :='10-AUG-2012 07:30:30';
ln_dbms_cur := DBMS_SQL.OPEN_CURSOR;
iv_plsql2 := BEGIN PKG_PRADEEP.P_INSERTDATE(to_date(iv_plsql4,'DD-MM-YYYY HH24:MI:SS'));
DBMS_OUTPUT.put_line(iv_plsql);
DBMS_SQL.PARSE(ln_dbms_cur,iv_plsql,DBMS_SQL.NATIVE);
ln_cur_execute := DBMS_SQL.EXECUTE(ln_dbms_cur);
This code inserts the date in to the database but the time comes as 12:00 A.M.
but if I change the string iv_plsql2 as given below the date gets inserted with the TIME field.
iv_plsql2 := BEGIN PKG_PRADEEP.P_INSERTDATE(to_date('10-AUG-2012 07:30:30','DD-MM-YYYY HH24:MI:SS'));
Can someone explain why this happens?
iv_plsql2variable which won't compile. The fact that you're using dynamic SQL makes me suspect that you're actually assigning a string toiv_plsql2that happens to contain a PL/SQL block. That, in turn, strongly implies that the error comes when you are building up this string which is what you have apparently edited out of your code in order to post the question. Additionally, I'm hoping that there really is a reason that you need to use dynamic SQL-- nothing here indicates a need to do so. – Justin Cave Aug 10 '12 at 21:57