native
SQL_IsNull
Syntax
native SQL_IsNull(Handle:query, column);
Description
Tells whether a specific column in the current row is NULL or not.
Parameters
| query | Handle of a query to check. |
|---|---|
| column | Which column to check for NULL. |
Return
1 if the column is NULL, 0 otherwise.
Error
Invalid query handle.
No result set in this query.
Invalid column.