The isWritable method in ResultSetMetaData returns the logically

incorrect result. This bug goes back to at least 6.3.

Alvin
This commit is contained in:
Bruce Momjian 1999-03-14 05:18:00 +00:00
parent d13fe29000
commit 983fc97672
1 changed files with 2 additions and 2 deletions

View File

@ -378,9 +378,9 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
public boolean isWritable(int column) throws SQLException
{
if (isReadOnly(column))
return true;
else
return false;
else
return true;
}
/**