I've added code tags to your post (it does look much better this way) - you can do so yourself, but avoid using other formatting tools (such as colors) in code, it is not supported.
What is the data type of the
CUST_TO column? Based on the exception, I'd say it is a
NUMBER, so it doesn't even make sense to compare it to a date.
If you really want to put in a date,
you should use
PreparedStatement. Actually, Rob has already
told you so, so please follow the good advice when given to you.
This page says why using
PreparedStatement is critical, and the
JDBC tutorial can help you doing so.
Please read both of these pages (and the complete
JDBC tutorial, if you haven't done so yet) before you try to write another database code - it will help you avoid many database-related problems. Of course, if something is unclear to you in the tutorial, feel free to ask questions here - we'll happily answer questions from people that read tutorials