Multiple choice

Which of the following methods is present in the ResultSetMetaData interface in Java database programming?

  1. isWritable(int column)

  2. isReadable(int column)

  3. getColumnsName(int column)

  4. getColumnsCount()

  5. getSchema(int column)

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is the correct choice because isWritable(int column) is defined in the ResultSetMetaData interface and it indicates whether it is possible for a write on the designated column to succeed.