This week's giveaways are in the MongoDB and Jobs Discussion forums.
We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line!
See this thread and this one for details.
The moose likes JDBC and the fly likes how to create MySql stored procedure? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "how to create MySql stored procedure?" Watch "how to create MySql stored procedure?" New topic
Author

how to create MySql stored procedure?

harilal ithikkat
Ranch Hand

Joined: Oct 06, 2008
Posts: 221
i tried this way



can anyone fix this issue?


SCJP 1.5
"A candle looses nothing by lighting another candle"
itechmentors.com
ujjwal soni
Ranch Hand

Joined: Mar 28, 2007
Posts: 390
Hi,

Try doing this way.


mysql> delimiter //

mysql> CREATE PROCEDURE simpleproc (OUT param1 INT)
-> BEGIN
-> SELECT COUNT(*) INTO param1 FROM t;
-> END;
-> //
Query OK, 0 rows affected (0.00 sec)

mysql> delimiter ;

mysql> CALL simpleproc(@a);
Query OK, 0 rows affected (0.00 sec)

mysql> SELECT @a;
+------+
| @a |
+------+
| 3 |
+------+
1 row in set (0.00 sec)


Cheers!!!
Ujjwal B Soni <baroda, gujarat, india> <+919909981973>
"Helping hands are better than praying lips......"
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: how to create MySql stored procedure?
 
Similar Threads
Getting result set using callablestatement??
getting error while working Stored procedure?
Error :java.sql.SQLException: Invalid column index
MySQL - Returning Tables in Functions/SPs/Views
mysql cursor in stored procedure