Hi,
is it possible to convert a date field into a datetime field. I've got this error :
-1262 Non-numeric character in datetime or interval.
on
create procedure "informix".ins_notimportant(
p_date VARCHAR(50)) -- date parameter
DEFINE l_datetime like tablename.datetimefield;
LET l_datetime = p_date;
...
In this procedure, I have to insert a date field into a datetime field. I tried extend() but it don't seems to work... can somebody help ?
thanks