I am trying to insert a date from C# into an Oracle DATE field.
Here is the format that I have currently..
to_date('2008/06/09', 'YYYY/MM/DD')
I have verified that my date is a valid date, and that it is in the format expected. The above throws the oracle error about a non-numeric character being found where a numeric character was expected.
Any suggestions?