PROBLEM
I want to make a Database column that is a large size to accommodate for an HTML Editor value. Something where the user could right up a full review of a subject matter.
In the Servoy Database manager, when you create a column with the 'String' datatype it is an 'nvarchar(x)' with the initial length value of 50 (but it can be changed to another number).
My question is about having a variable size. Because I would like to set a huge max size value, but have the actual size change based upon how big the String value actually is.
HELP
Would it be okay to use 'nvarchar(max)' and not worry about the huge size of it? Or just setting a huge number size limit for the String value type? Like is there any downside to having like 12 columns all with huge or max sizes? Will it cause instability? I want to be sure to avoid any issues like that.
Or, is there a way of implementing a Variable size for a String value? Like would the Media datatype allow for that? I'm just trying to think of a way of avoiding overloading the database server per-emptively.