royen zhu - 2011-04-09

   When I use MySQLDataApdater to fill a DataSet,if the filed type is Text,the value I get is always System.byte,not the actual value.The Code is like this:
    MySQLDataApdater mda = new MySQLDataApdater("Select * from db",connection);
    DataSet ds = new DataSet();
    mda.fill(ds,"tttt");
    when I get value by ds.Tables.Row ,the return value is always "System.Byte",how to solve this bug?