You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kathey Marsden (JIRA)" <ji...@apache.org> on 2008/07/10 18:52:31 UTC

[jira] Commented: (DERBY-3754) Convert "org.apache.derbyTesting.functionTests.tests.lang.connect.sql" to junit

    [ https://issues.apache.org/jira/browse/DERBY-3754?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12612568#action_12612568 ] 

Kathey Marsden commented on DERBY-3754:
---------------------------------------

Hi Junjie,

You have code like:

   String conSql = "connect 'jdbc:derby:wombat;create=true'";
        Connection con = DriverManager.getConnection(conSql);

The connect statement is just ij language and is not used.  You only pass the url to DriverManager. e.g.

String url = "jdbc:derby:wombat;create=true";
Connection con = DriverManager.getConnection(url);


One thing to not as well  is since this test uses DriverManager we don't want to run with JSR169, Your suite() method should have something like:
     if ( JDBC.vmSupportsJSR169())
            // Test uses DriverManager which 
            // is not supported with JSR169
            return new TestSuite("empty ConnectTest:DriverManager not supported");
  



>  Convert "org.apache.derbyTesting.functionTests.tests.lang.connect.sql" to junit
> --------------------------------------------------------------------------------
>
>                 Key: DERBY-3754
>                 URL: https://issues.apache.org/jira/browse/DERBY-3754
>             Project: Derby
>          Issue Type: Test
>          Components: Test
>         Environment: windows xp, sp2.
>            Reporter: Junjie Peng
>            Assignee: Junjie Peng
>         Attachments: derby-3754-1-patch.txt
>
>   Original Estimate: 120h
>  Remaining Estimate: 120h
>
> Convert "org.apache.derbyTesting.functionTests.tests.lang.connect.sql" to junit. It it a part of 2008 GSOC.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.