Multiple choice

Which of the following methods is present in 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 option because isWritable(int column) is defined in ResultSetMetaData interface and it indicates whether it is possible for a write on the designated column to succeed or not.