ciao!
leggo i dati in una tabella access tramite oledb...
fin qui tuttto ok..
il problema è che ho un campo nel db di tipo memo (max 65535 caratteri) ma andando a leggere il campo con c# mi trimma a 255...
sapete aiutarmi???

per leggere faccio così;
codice:
            OleDbCommand _cmd = new OleDbCommand();
            OleDbDataReader _read;
            _cmd.CommandText = "select campo_memo from tabela";
            _read = _cmd.ExecuteReader();

            while (_read.Read())
            {
                sSet = _read.GetString(0);
            }
tnx!