Hi,
We have some embedded SQL code (C) that inserts into a table. Some columns are dates and I need to know how to call TO_DATE
given that the column is nullable.
For example:
EXEC SQL INSERT INTO mytable VALUES (:var_date:null_1);
How can I convert this to use TO_DATE?
TIA