Activity overview
Latest activity by pdb
Alex B said:
But I couldn't get a check for a row value of NULL to work. I tried val is None
val is not None
val is DBNull
val is DBNull.Value
val == DBNull
val == DBNull.ValueBut couldn't get it to work.
Hello, I am struggeling with the same issue. Are there any updates on "how to check another column value for null within a python script"? EDIT: Finally found out myself. We need to useval.IsNull
Found it by accident. Where is a documentation for that? / comments
Alex B said:
But I couldn't get a check for a row value of NULL to work. I triedval is None
val is not None
val is DBNull
val is DBNull.Value
val == DBNull
val == DBNull.ValueBut couldn't g...