Hi everybody,
I got issue with proper encoding DBF data retrieved over VFPOLEDB driver. Here is my code that makes problem:
oConn.Open(); System.Data.OleDb.OleDbCommand oCmd = oConn.CreateCommand(); oCmd.CommandText = "SELECT " + parametr + " FROM " + subiektPath + @"\DBFS\" + nazwaTabeli + " " + parametr2; dt.Load(oCmd.ExecuteReader()); oConn.Close();
Can you please help me to read it via stream bytes, encode and put into DataTable?
Thanks!