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)" <de...@db.apache.org> on 2006/08/03 00:04:14 UTC

[jira] Created: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

Documented syntax for  storing jar files in a db has syntax errors
------------------------------------------------------------------

                 Key: DERBY-1634
                 URL: http://issues.apache.org/jira/browse/DERBY-1634
             Project: Derby
          Issue Type: Bug
          Components: Documentation
    Affects Versions: 10.1.3.1
            Reporter: Kathey Marsden
            Priority: Minor
             Fix For: 10.2.0.0


The 'Adding a jar 
file' section (link below) is missing a J from the "SQL." 
portion (should be SQLJ).  The 'Removing a jar file' and 
'Adding a jar file' sections have 3 parameters in the syntax 
description and should only have 2 parameters. 

http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html

It would also be good to clarify the meaning of the parameters.


-- 
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

        

[jira] Updated: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

Posted by "Rick Hillegas (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-1634?page=all ]

Rick Hillegas updated DERBY-1634:
---------------------------------

    Fix Version/s: 10.2.2.0
                       (was: 10.2.1.0)

Moving to 10.2.2.0.

> Documented syntax for  storing jar files in a db has syntax errors
> ------------------------------------------------------------------
>
>                 Key: DERBY-1634
>                 URL: http://issues.apache.org/jira/browse/DERBY-1634
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.1.3.1
>            Reporter: Kathey Marsden
>         Assigned To: Stan Bradbury
>            Priority: Minor
>             Fix For: 10.2.2.0
>
>
> The 'Adding a jar 
> file' section (link below) is missing a J from the "SQL." 
> portion (should be SQLJ).  The 'Removing a jar file' and 
> 'Adding a jar file' sections have 3 parameters in the syntax 
> description and should only have 2 parameters. 
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html
> It would also be good to clarify the meaning of the parameters.

-- 
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

        

[jira] Commented: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

Posted by "Stan Bradbury (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-1634?page=comments#action_12430677 ] 
            
Stan Bradbury commented on DERBY-1634:
--------------------------------------

These commands are documented correctly in the Developers Guide.  In addition to the above problems the qualifiedJarName also needs quotes plus splitting the quoted jarFilePath across example lines makes if very difficult to read.  Here's the current and corrected text.

Current:   CALL SQL.install_jar('
     jarFilePath
      ', qualifiedJarName, 0) 
CORRECT:  CALL sqlj.install_jar('jarFilePath', 'qualifiedJarName', 0) 

Current: CALL SQLJ.remove_jar ('
      jarFilePath
       ', qualifiedJarName, 0)
CORRECT: CALL sqlj.remove_jar( 'qualifiedJarName', 0)

Current:  CALL SQLJ.replace_jar('
         jarFilePath
            ', qualifiedJarName, 0)
CORRECT: CALL sqlj.replace_jar( 'jarFilePath', 'qualifiedJarName')

> Documented syntax for  storing jar files in a db has syntax errors
> ------------------------------------------------------------------
>
>                 Key: DERBY-1634
>                 URL: http://issues.apache.org/jira/browse/DERBY-1634
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.1.3.1
>            Reporter: Kathey Marsden
>            Priority: Minor
>             Fix For: 10.2.1.0
>
>
> The 'Adding a jar 
> file' section (link below) is missing a J from the "SQL." 
> portion (should be SQLJ).  The 'Removing a jar file' and 
> 'Adding a jar file' sections have 3 parameters in the syntax 
> description and should only have 2 parameters. 
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html
> It would also be good to clarify the meaning of the parameters.

-- 
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

        

[jira] Assigned: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

Posted by "Stan Bradbury (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-1634?page=all ]

Stan Bradbury reassigned DERBY-1634:
------------------------------------

    Assignee: Stan Bradbury

> Documented syntax for  storing jar files in a db has syntax errors
> ------------------------------------------------------------------
>
>                 Key: DERBY-1634
>                 URL: http://issues.apache.org/jira/browse/DERBY-1634
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.1.3.1
>            Reporter: Kathey Marsden
>         Assigned To: Stan Bradbury
>            Priority: Minor
>             Fix For: 10.2.1.0
>
>
> The 'Adding a jar 
> file' section (link below) is missing a J from the "SQL." 
> portion (should be SQLJ).  The 'Removing a jar file' and 
> 'Adding a jar file' sections have 3 parameters in the syntax 
> description and should only have 2 parameters. 
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html
> It would also be good to clarify the meaning of the parameters.

-- 
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

        

[jira] Resolved: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

Posted by "Stan Bradbury (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-1634?page=all ]

Stan Bradbury resolved DERBY-1634.
----------------------------------

    Fix Version/s: 10.2.1.6
                       (was: 10.2.2.0)
       Resolution: Fixed

This specific issue was resolved as part of  DERBY-1798, a general Tools Guide clean up.

> Documented syntax for  storing jar files in a db has syntax errors
> ------------------------------------------------------------------
>
>                 Key: DERBY-1634
>                 URL: http://issues.apache.org/jira/browse/DERBY-1634
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.1.3.1
>            Reporter: Kathey Marsden
>         Assigned To: Stan Bradbury
>            Priority: Minor
>             Fix For: 10.2.1.6
>
>
> The 'Adding a jar 
> file' section (link below) is missing a J from the "SQL." 
> portion (should be SQLJ).  The 'Removing a jar file' and 
> 'Adding a jar file' sections have 3 parameters in the syntax 
> description and should only have 2 parameters. 
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html
> It would also be good to clarify the meaning of the parameters.

-- 
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

        

[jira] Closed: (DERBY-1634) Documented syntax for storing jar files in a db has syntax errors

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

Kathey Marsden closed DERBY-1634.
---------------------------------


> Documented syntax for  storing jar files in a db has syntax errors
> ------------------------------------------------------------------
>
>                 Key: DERBY-1634
>                 URL: https://issues.apache.org/jira/browse/DERBY-1634
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.1.3.1
>            Reporter: Kathey Marsden
>         Assigned To: Stan Bradbury
>            Priority: Minor
>             Fix For: 10.2.1.6
>
>
> The 'Adding a jar 
> file' section (link below) is missing a J from the "SQL." 
> portion (should be SQLJ).  The 'Removing a jar file' and 
> 'Adding a jar file' sections have 3 parameters in the syntax 
> description and should only have 2 parameters. 
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1002986.html
> http://db.apache.org/derby/docs/10.1/tools/ttoolsjarload1003059.html
> It would also be good to clarify the meaning of the parameters.

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