ability to update LOBs is unimplemented. The 1.5 JDK's CachedRowSet
implementation calls this method regardless of whether large objects
are used or not.
*/
public boolean locatorsUpdateCopy() throws SQLException
{
- throw org.postgresql.Driver.notImplemented();
+ /*
+ * Currently LOB's aren't updateable at all, so it doesn't
+ * matter what we return. We don't throw the notImplemented
+ * Exception because the 1.5 JDK's CachedRowSet calls this
+ * method regardless of wether large objects are used.
+ */
+ return true;
}
/**