Hello,
I just can't find a way to format a DATE column using the format 'yyyy-MM-dd'. How do I do it hxttDBF?
Jan
|
CDATE(expression,pattern): returns a Date value according a pattern from an expression. For instance, CDATE('21111947','ddMMyyyy').
If you need such function, we can provide DTOC(date1 | timestamp1,pattern): returns a string from a date or timestamp expression.
What's your suggestion?
|
v3.0.020 provides DTOS(date1 | timestamp1,pattern) for date conversion.
For instance, ?dtos(now(),'yyyy-MM-dd');
|
I see, yes, DTOS( date, pattern ) looks like what I need. Thank you so much.
Jan
|