Indicates whether a write on the designated column will definitely succeed.

public boolean isDefinitelyWritable(int column)

Parameters

column

An integer that indicates the column index.

Return Value

True if the column write will definitely succeed. Otherwise, false.

Exceptions

SQLServerException

Remarks

This isDefinitelyWritable method is specified by the isDefinitelyWritable method in the java.sql.ResultSetMetaData interface.

Note: When using Microsoft SQL Server 2005 JDBC Driver with a SQL Server database, this method will always return false.

See Also