I am trying to get the difference between two datetimes and display it in string as hh:mm
q.parambyname('vstart').asdatetime:= vstart;
q.parambyname('vend').asdatetime:= vend;
d:= vend-vstart;
mins:= d * 1440;
q.ParamByName('mins').asBCD:= mins;
currently the database stores it in minutes
example (0.39)
I would like to then take it from database and display it in the string format hh:mm
minsfield in your Database?vstartandvendfields already contain all information you need to return difference between them as query result (in format you need). – teran Oct 23 '12 at 13:46