This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 62118 - Execute SQL - AbstractMethodError at SqlExecuteHelper.getSupportedResultSetTypeConcurrency():66
Summary: Execute SQL - AbstractMethodError at SqlExecuteHelper.getSupportedResultSetTy...
Status: VERIFIED FIXED
Alias: None
Product: db
Classification: Unclassified
Component: SQL Editor (show other bugs)
Version: 5.x
Hardware: All All
: P2 blocker (vote)
Assignee: Andrei Badea
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-10 17:33 UTC by Martin Schovanek
Modified: 2005-11-18 18:18 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
java.lang.AbstractMethodError (623 bytes, text/plain)
2005-08-10 17:33 UTC, Martin Schovanek
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Schovanek 2005-08-10 17:33:16 UTC
[#20050810, jdk1.4.2, MSSQL 2000 SP3, Weblogic 5.1.0]

Execute SQL on MSSQL connection throws:
Comment 1 Martin Schovanek 2005-08-10 17:33:55 UTC
Created attachment 23698 [details]
java.lang.AbstractMethodError
Comment 2 Pavel Buzek 2005-08-26 05:32:15 UTC
looks like the problem is in the new db/sqleditor module
Comment 3 Andrei Badea 2005-09-08 14:35:34 UTC
It seems the WebLogic driver doesn't implement the
DatabaseMetaData.supportsResultSetConcurrency() method. This is quite
unfortunate, as this method is used to find out whether the driver supports
scrollable and updateable result sets, IOW whether we can edit the result set.
Editing of the result set is not possible in F anyway, so for now fixed by just
creating forward-only read-only result sets.

Checking in SQLExecuteHelper.java;
/cvs/db/core/src/org/netbeans/modules/db/sql/execute/SQLExecuteHelper.java,v 
<--  SQLExecuteHelper.java
new revision: 1.3; previous revision: 1.2
done
Comment 4 Martin Schovanek 2005-11-18 18:18:19 UTC
VERIFIED