I have a table with films. There is a field with short description.
Using MEMO field in Access(is that correct?).
Then I’m adding from TextBox that have multiple lines some info.
After adding no errors, but in this field in DataGridview there is only System.String[].
What’s wrong?
And how to get data back to multilined textbox from that field?
The MEMO field expects a single value, not an array. The default
ToString()implementation is then used, which will return"System.String[]".You could store a single string value by joining each array member:
But probably the TextBox has a property that returns the data as a single string, too.