tags:

views:

78

answers:

2

In MySQL I have a table with name, address, telephone, age and charge column.

Assume I have written a stored procedure called calculate_monthly_charges. This stored procedure takes no parameters.

How can I write a corresponding code for invoking and executing the stored procedure?

A: 

Check this link.

klausbyskov
+1  A: 

Take a look at the MySQL documentation Connector/J: Calling Stored Procedures.