Returned whether the given column is writable for the specified result set meta data.
Syntax
isNullable( resultsetmetadata , index )
resultsetmetadata.isNullable( index )
Parameters
resultsetmetadata
|
the result set meta data object to check.
|
index
|
the index of the column.
|
Returns
boolean
|
true if the column can be set to null.
false if the column can not be set to null.
|
Example
if rsmd.isNullable( 1 ) then
break
end
|