尝试通过应用程序执行SQL Query时,我遇到了以下错误。
错误:原因短语不得包含换行符。
当我关闭集成安全选项时,错误消失了。
请告知为什么会出现此错误以及这背后的原因是什么?
答案 0 :(得分:2)
这不是sql-server的错误。属性HttpResponseMessage.ReasonPhrase
public string ReasonPhrase
{
get { return reasonPhrase; }
set
{
if ((value != null) && ContainsNewLineCharacter(value))
{
throw new FormatException("The reason phrase must not contain new-line characters.");
}
CheckDisposed();
reasonPhrase = value; // It's OK to have a 'null' reason phrase
}
}
请详细描述您的问题