I have a record set that I am displaying with getstring(). I need to
format one column only using FormatDateTime. How do I do this?
Thank you.
>I have a record set that I am displaying with getstring(). I need to
> format one column only using FormatDateTime. How do I do this?
>
> Thank you.
Short of using something other than GetString you'll have to format the
column in the query. (If you're using SQL Server as the db engine, see the
CONVERT function.)
-Mark