Error Messages/40636

Revision as of 00:01, 27 February 2010 by Max (talk | contribs) (Cause)

Error Message Examples

In call to function Cube, the first parameter, num, should be numeric,
but the array passed to this parameter contains a non-numeric value at the following coordinate:
              DoCube='seventeen'

Cause

The function is expecting its parameter to be a number (scalar or array), but it is non-numeric -- e.g., text or NULL. Function parameters that have been qualified by the 'numeric' qualifier expects a numeric value or an array of numeric values, and produces this error on passing a non numeric value.

The following function expects the first parameter, num, to be a number and throws this error when an array with non numeric values is passed to it.

Function Cube( num: numeric)

To learn more about function parameter qualifiers, please click here.

Remedies

Correct the value in the array passed to the function at the specified coordinate to be numeric.


Loading comments...
Comments
<comments />