Error Messages/40237
Message examples
In call to function SplitText, the second parameter, «Separator», should be a text value.
In call to function DbQuery, the first parameter, «connection», should be a text value.
Cause
A non-text value was passed to the indicated parameter. Perhaps a number or Null.
Note that the "second" parameter (or whatever ordinal position is stated in your case), refers to the parameter number in the declaration of the function. If you use a named-calling syntax, you can specify the parameters in any order, so the problematic parameter could be something other than the second parameter in your call to the function. In that case, it will be prefaced with the name of the parameter, such as «Separator:» in the example message.
See Also
Comments
Enable comment auto-refresher