Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
1.0, 1.0.1, 1.0.2
-
None
-
None
Description
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.