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:
parent
d13fe29000
commit
983fc97672
@ -378,9 +378,9 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
|
|||||||
public boolean isWritable(int column) throws SQLException
|
public boolean isWritable(int column) throws SQLException
|
||||||
{
|
{
|
||||||
if (isReadOnly(column))
|
if (isReadOnly(column))
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
return false;
|
||||||
|
else
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user