the datatable should send me the following data (Compte sociétaire) but it sends me back (Compte socié\u0082taire), what do I miss in my code to have the correct formatting?
Req = "select lib as libel from mvt order by lib";
OracleCommand command = new OracleCommand(Req, myOracleConnection);
OracleDataReader da = command.ExecuteReader();
DataTable dataTable = new DataTable();
dataTable.Load(da);
dataTable.Locale = CultureInfo.CurrentCulture;
if (dataTable != null && dataTable.Rows.Count > 0)
{
foreach (DataRow row in dataTable.Rows)
{
foreach (var item in row.ItemArray)
{
myCollection.Add(item.ToString());
}
}
return myCollection;
}