You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Chad Schoettger (JIRA)" <ji...@apache.org> on 2007/05/24 21:06:16 UTC

[jira] Created: (BEEHIVE-1195) Update JDBC Control doc to remove improper example of invoking stored procedure

Update JDBC Control doc to remove improper example of invoking stored procedure
-------------------------------------------------------------------------------

                 Key: BEEHIVE-1195
                 URL: https://issues.apache.org/jira/browse/BEEHIVE-1195
             Project: Beehive
          Issue Type: Bug
          Components: Documentation
    Affects Versions: 1.0.2, 1.0.1, 1.0
            Reporter: Chad Schoettger
            Priority: Minor


The JDBC dev guide, shows the following as an example of how to invoke a stored procedure:

 @SQL(statement="call sp_updateData({keyVal}, {intVal})"
    void call_sp_updateCust(short keyVal, int intVal);

Should be:

 @SQL(statement="{call sp_updateData({keyVal}, {intVal}})"
    void call_sp_updateCust(short keyVal, int intVal);


Also following this sample, there is a reference to invoking stored procedures in sybase which should be removed.

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