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 "A. Rick Anderson (JIRA)" <ji...@apache.org> on 2007/02/19 14:41:07 UTC

[jira] Created: (DERBY-2355) Wrong URL in Eclipse-Plugin Lab Example Jays.java

Wrong URL in Eclipse-Plugin Lab Example Jays.java
-------------------------------------------------

                 Key: DERBY-2355
                 URL: https://issues.apache.org/jira/browse/DERBY-2355
             Project: Derby
          Issue Type: Bug
          Components: Demos/Scripts
    Affects Versions: 10.2.2.0
         Environment: N/A
            Reporter: A. Rick Anderson
            Priority: Trivial


In the Eclipse plugin lab, there is a sample file called Jays.java.  This file is part of derby_plugin_lab.zip file.  The syntax for the connection URL in this file is incorrect.  This but is particularly troublesome, since the majority of people using this lab will be unfamiliar with the correct Derby syntax and the error is a subtle one (a colon, versus a semi-colon).

Current Code:
        String derbyClientURL = "jdbc:derby://localhost:1527/jayDB:user=APP;password=APP;";

Corrected Code:
        String derbyClientURL = "jdbc:derby://localhost:1527/jayDB;user=APP;password=APP;";



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


[jira] Resolved: (DERBY-2355) Wrong URL in Eclipse-Plugin Lab Example Jays.java

Posted by "Andrew McIntyre (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DERBY-2355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew McIntyre resolved DERBY-2355.
------------------------------------

       Resolution: Fixed
    Fix Version/s: 10.3.0.0
         Assignee: Andrew McIntyre

Fix committed with revision 509896.

> Wrong URL in Eclipse-Plugin Lab Example Jays.java
> -------------------------------------------------
>
>                 Key: DERBY-2355
>                 URL: https://issues.apache.org/jira/browse/DERBY-2355
>             Project: Derby
>          Issue Type: Bug
>          Components: Demos/Scripts
>    Affects Versions: 10.2.2.0
>         Environment: N/A
>            Reporter: A. Rick Anderson
>         Assigned To: Andrew McIntyre
>            Priority: Trivial
>             Fix For: 10.3.0.0
>
>
> In the Eclipse plugin lab, there is a sample file called Jays.java.  This file is part of derby_plugin_lab.zip file.  The syntax for the connection URL in this file is incorrect.  This but is particularly troublesome, since the majority of people using this lab will be unfamiliar with the correct Derby syntax and the error is a subtle one (a colon, versus a semi-colon).
> Current Code:
>         String derbyClientURL = "jdbc:derby://localhost:1527/jayDB:user=APP;password=APP;";
> Corrected Code:
>         String derbyClientURL = "jdbc:derby://localhost:1527/jayDB;user=APP;password=APP;";

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