Not an Oracle expert but you probably should use the Oracle TO_DATE() function to convert to Oracle format.
TO_DATE(DateString,Format)
So
Code:
INSERT INTO table (field) VALUES(TO_DATE('03/05/2005','mm/dd/yyyy')
Should work. However in theory this should not be required as if you pass your date as a string ('03-05-2005') Oracle should do the conversion "on the fly".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.