Actions
Bug #2773
closedfunction attempt to update nulls badly
Start date:
02/12/2007
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
2773
Description
these functions try to update nulls to values that can be null, throwing off the SQL:
sas_updateTaxonImportanceCalcFields
sas_updateObservation_calcFields
fix to this: "set field = " & nz(!someOtherField,"null") & " where "...
Updated by Michael Lee almost 18 years ago
better yet, If Not IsNull(!ObsBasalArea) Then
doens't even run sql if null then.
Actions