Please discard the changes.
Keep the original program of FWH as it is.
For the purpose of testing, we created a table "timefield" on our FWH demo server in the cloud.
This is the creation SQL
- Code: Select all Expand view
CREATE TABLE timefield (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(10),
fdate DATE,
fdatetime DATETIME,
ftime TIME
When viewed with FWH built-in library the xbrowse is ok and is working as expected:
But the problem is with ADO.
(x)Harbour ADO reads the value of a Time field of MySql as a date time value.
This is not the issue with xbrowse or datarow. This is the issue with (x)Harbour ADO functionality
? oRs:Fields( "ftime" ):Value --> datetime value with some unknown date
? ValType( oRs:Fields( "ftime" ):Value ) --> "T"
Now what should xbrowse and datarow classes do?
We are thinking.