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"} |
Environment
.NET Framework 5.0
AdoNetCore.AseClient nuget package version 0.19.2
The text was updated successfully, but these errors were encountered:
gusschlaien
changed the title
Cannot insert values longer that 16834 chars in SP for type TEXT
Cannot insert values longer that 16384 chars in SP for type TEXT
Feb 2, 2022
gusschlaien
changed the title
Cannot insert values longer that 16384 chars in SP for type TEXT
Cannot insert values larger than 16384 chars in SP for type TEXT
Feb 2, 2022
gusschlaien
changed the title
Cannot insert values larger than 16384 chars in SP for type TEXT
Cannot insert values larger than 16384 chars in AseCommand for type TEXT
Feb 2, 2022
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
THEN WHEN EXECUTING THE COMMAND I GET EXCEPTION:
▶ | $exception | {"The token datastream length was not correct. This is an internal protocol error.\n"} |
Environment
AdoNetCore.AseClient
nuget package version0.19.2
The text was updated successfully, but these errors were encountered: