01-16-2014 03:59 AM
Hi all, I´m new user, and i´m using DB toolkit.
I have a database, where the datas have a timestamp, how is possible read this datas in order of time?
For every cicle I need to select six values (three voltages and three currents) in order of timestam.
Thanks to all
01-17-2014 03:29 AM
01-17-2014 04:23 AM
SELECT [fields] FROM [table] ORDER BY [timestamp]
/Y
01-17-2014 05:19 AM
to make it work make sure the column in which you are wrtiting the time is in datetime format
01-21-2014 09:36 AM
Thanks to all 🙂
01-22-2014 04:59 AM - edited 01-22-2014 05:00 AM
Thanks to all, now i have the data in order, I have only one other problem, I'm trying to store rows every time into a column array, and i need to refresh this array every time the timestamp change of 20 ms. Because of inside the DB every row of the columns has a different value every 20 millisecond (so inside the column of DB for every timestamp I have 29 rows and if i scroll down the column i have new 29 rows with new timestamp increased of 20 ms)