I am reading CSV files (using .Net) into a DataTable using an OdbcConnection. One of my columns is an ID field that should be read in as strings (these values are numbers with padded zeros). When I fill the DataTable using the OdbcDataAdapter, this value gets converted to an INT rather than a string. For example, one id might be "00001" and it is being read in as "1".
Any ideas into how I can maintain the integrity of this field?