Dim Cursor1 As Cursor
Cursor1 = SQL1.ExecQuery2("SELECT col1, col2, col3, col4 FROM moja13 WHERE _id = '1357862400' ",Null)
For i = 0 To Cursor1.RowCount - 1
This is working
But I need get records daily like that:
DateTime.SetTimeZone(0)
Dim Date, time As Long
Dim date1 As Long
Date = DateTime.now
time = Date Mod DateTime.TicksPerDay
date1 = ((Date - time)/ 1000)
Dim Cursor1 As Cursor
Cursor1 = SQL1.ExecQuery2("SELECT col1, col2, col3, col4 FROM moja13 WHERE _id = 'date1' ",Null)
For i = 0 To Cursor1.RowCount - 1 Its not working I
I am looking for an answer for two days now and I'm starting to get nervous.
Sorry I'm a novice, but I can find answer for that .
Already I've done a lot of test .I need find record from the database every day automatically by current day.:BangHead::BangHead::BangHead::BangHead:
Thankyou for Help
Cursor1 = SQL1.ExecQuery2("SELECT col1, col2, col3, col4 FROM moja13 WHERE _id = '1357862400' ",Null)
For i = 0 To Cursor1.RowCount - 1
This is working
But I need get records daily like that:
DateTime.SetTimeZone(0)
Dim Date, time As Long
Dim date1 As Long
Date = DateTime.now
time = Date Mod DateTime.TicksPerDay
date1 = ((Date - time)/ 1000)
Dim Cursor1 As Cursor
Cursor1 = SQL1.ExecQuery2("SELECT col1, col2, col3, col4 FROM moja13 WHERE _id = 'date1' ",Null)
For i = 0 To Cursor1.RowCount - 1 Its not working I
I am looking for an answer for two days now and I'm starting to get nervous.
Sorry I'm a novice, but I can find answer for that .
Already I've done a lot of test .I need find record from the database every day automatically by current day.:BangHead::BangHead::BangHead::BangHead:
Thankyou for Help