You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I want to write a value longer that 16384 chars setting as a parameter of type TEXT it just throws me an exception.
I.e.:
DEFINING THE PARAMETER AS
var parameter = new AseParameter
{
ParameterName = paramName,
//DbType = DbType.String,
AseDbType = AseDbType.Text,
Value = paramValue,
};
command.Parameters.Add(parameter);
THEN WHEN EXECUTING THE COMMAND I GET EXCEPTION:
▶ | $exception | {"The token datastream length was not correct. This is an internal protocol error.\n"} |