I'm using oleDataAdapter to import data from a access file. The table includes some fields with datatype text and 2 with datatype date/time
The field with text datatype will be displayed correctly in the datagrid, but the data with date/time will only display the date, not the time in the datagrid
Example
TABLE in Access
ID | Employee_NAME (as string) | Start (as date/time)
1 John 2006-06-06 15:40
Will display the following data in Datagrid
DATAGRID
ID | Employee_NAME | Start
1 John 2006-06-06
What is the problem?
The field with text datatype will be displayed correctly in the datagrid, but the data with date/time will only display the date, not the time in the datagrid
Example
TABLE in Access
ID | Employee_NAME (as string) | Start (as date/time)
1 John 2006-06-06 15:40
Will display the following data in Datagrid
DATAGRID
ID | Employee_NAME | Start
1 John 2006-06-06
What is the problem?