I am using the MS Jet driver 4.0 to export a .dbf file and its associated .dbt file. The problem I am having is that even after several hours of searching, the data in my columns are all "memo fields," meaning they are all strings/text. Since this is the case, I cannot add up any numeric values, as they are seen as text and will print a SUM of 0. I have tried multiple ways of setting the column type as follows, but none of them appear to have any effect on the output...they are still text values.
DataTable.Columns.Add(COL_HRS,
typeof(System.Double));
stream.DataTable.Columns.Add(COL_HRS)
, Type.GetType("System.Double"));
...etc.
Is this a problem with the MS 4.0 Jet Driver? Has anyone else ran into this? Thanks in advance.