我试图在table1中插入包含数据类型'''hierarchyid'列的空值,这使我产生了以下错误。
A .NET Framework error occurred during execution of user-defined routine or aggregate "hierarchyid":
Microsoft.SqlServer.Types.HierarchyIdException: 24001: SqlHierarchyId.Parse failed because the input string 'NULL' is not a valid string representation of a SqlHierarchyId node.
Microsoft.SqlServer.Types.HierarchyIdException: at Microsoft.SqlServer.Types.SqlHierarchyId.Parse(SqlString input)
是否可以向此列插入空值,还是有其他方法可以执行此操作?
答案 0 :(得分:1)
我认为您要将DBNull.Value
插入列中,而不是字符串“null”。