Can someone help me, please?
I have a VB.NET app I'm writing that communicates with an Oracle 9i DB. I am trying to write records into a table, and in that table there is a date field. I'm getting an type mismatch error when it tries to plug a null (no value for Date) into the record.
How can I avoid this error? What can I send to the table that won't be interpreted as an incorrect date, and will allow me to use the as written code for updating the table?
Can I send a blank string ("") in place of the null? I don't think sending a 0 (zero) will work properly.
Thanks for any help you might be able to provide.
CraigHartz
I have a VB.NET app I'm writing that communicates with an Oracle 9i DB. I am trying to write records into a table, and in that table there is a date field. I'm getting an type mismatch error when it tries to plug a null (no value for Date) into the record.
How can I avoid this error? What can I send to the table that won't be interpreted as an incorrect date, and will allow me to use the as written code for updating the table?
Can I send a blank string ("") in place of the null? I don't think sending a 0 (zero) will work properly.
Thanks for any help you might be able to provide.
CraigHartz