NULL column validation when updating cells (#274)

* Adding validation that NULL is allowed when setting cell values

* Adding unit tests
This commit is contained in:
Benjamin Russell
2017-03-09 16:14:25 -08:00
committed by GitHub
parent 8f3e83b519
commit f2afa07a93
6 changed files with 50 additions and 8 deletions

View File

@@ -525,6 +525,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string EditDataNullNotAllowed
{
get
{
return Keys.GetString(Keys.EditDataNullNotAllowed);
}
}
public static string EE_BatchSqlMessageNoProcedureInfo
{
get
@@ -1079,6 +1087,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string EditDataInitializeInProgress = "EditDataInitializeInProgress";
public const string EditDataNullNotAllowed = "EditDataNullNotAllowed";
public const string EE_BatchSqlMessageNoProcedureInfo = "EE_BatchSqlMessageNoProcedureInfo";