My code behind on the .net application uses System.Data.OracleClient
, which I realize is deprecated.
What I'm wondering is if I have a 2000 CHARACTER entry in my asp:text box, about how many bytes do I need in my database to handle the entry? I know that 1 character sometimes = 1 byte, but in this case, the encoding seems to be adding extra bytes which causes the message to be truncated. I do NOT receive an error from the DB or the application when this occurs.
To resolve this issue, do I need to make my varchar2(4000) datafields CLOBS in order to handle data entries by the user?
Thank you for any tips and advice.