Skip to main content

Home/ MySQL/ Group items tagged procedure

Rss Feed Group items tagged

Ken Wei

MySQL AB :: MySQL 5.0 Reference Manual :: 17.2.1 CREATE PROCEDURE and CREATE FUNCTION S... - 0 views

  • Each parameter is an IN parameter by default. To specify otherwise for a parameter, use the keyword OUT or INOUT before the parameter name.
  • Specifying a parameter as IN, OUT, or INOUT is valid only for a PROCEDURE. (FUNCTION parameters are always regarded as IN parameters.)
Ken Wei

MySQL AB :: MySQL 5.0 Reference Manual :: 17.2.6 DECLARE Statement Syntax - 0 views

  • Declarations must follow a certain order. Cursors must be declared before declaring handlers, and variables and conditions must be declared before declaring either cursors or handlers.
  • DECLARE is allowed only inside a BEGIN ... END compound statement and must be at its start, before any other statements.
1 - 5 of 5
Showing 20 items per page