JUnit TestConfiguration class uses engine code to determine JDBC level.
-----------------------------------------------------------------------
Key: DERBY-1638
URL: http://issues.apache.org/jira/browse/DERBY-1638
Project: Derby
Issue Type: Improvement
Components: Test
Reporter: Daniel John Debrunner
Assigned To: Daniel John Debrunner
Priority: Minor
TestConfiguration uses the org.apache.derby.iapi.services.info.JVMInfo to
determine if JDBC 4 is supported. Ideally test code should not be calling
engine private api code.
Suggest two changes:
1) Determine JDBC level support from ability to load classes:
E.g. JDBC2 - java.sql.Driver
JDBC3 - java.sql.Driver AND java.sql.ParameterMetaData
JDBC4 - java.sql.Driver AND java.sql.SQLXML
JSR169 - java.sql.ParameterMetaData AND NOT java.sql.Driver
2) Move the supportsJDBC4() method from TestConfiguraiton to JDBC, since if the
VM supports JDBC4 or not is
not an attribute of a test configuration (and add other supportsJDBCX methods).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira