MySQL Forums
Forum List  »  Stored Procedures

can't call procedure
Posted by: Peter Chang
Date: April 15, 2005 02:27AM

Hi, I have fully configured mysql 5 with user & db tables.
(have all privileges on *.*, also reloaded mysql, too.)

- - - - -
mysql> delimiter //
mysql> create procedure cc() BEGIN select * from aaa; END//
Query OK, 0 rows affected (0.00 sec)

mysql> delimiter ;
mysql> call cc();
ERROR 1305 (42000): PROCEDURE abc.ss does not exist
mysql> select * from aaa;
+------+------+------+
| no | id | pin |
+------+------+------+
| 1 | 111 | 10 |
| 2 | 222 | 20 |
+------+------+------+
2 rows in set (0.00 sec)

mysql>

What should I do? I have installed clean source and new statement Directories..



Edited 1 time(s). Last edit at 04/15/2005 06:20AM by Peter Chang.

Options: ReplyQuote


Subject
Views
Written By
Posted
can't call procedure
4571
April 15, 2005 02:27AM
2406
April 15, 2005 03:30AM
2359
April 15, 2005 06:23AM
2318
April 15, 2005 08:19AM
2568
April 15, 2005 11:33AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.