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