I try to retreive data from Oracle
db like:
DataSet ds = new DataSet();
using (var cmd = DBOracle.GetCommand())
{
cmd.CommandText = sqlCommand;
OracleDataAdapter adapter = new OracleDataAdapter(cmd);
adapter.Fill(ds);
}
The target table contains column with GUID
but in ds
this column is filled as array of bytes instead of GUID. Is it possible let OracleDataAdapter
know that column type should be GUID?