DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(mysql.info) call

Info Catalog (mysql.info) drop-procedure (mysql.info) stored-procedure-syntax (mysql.info) begin-end
 
 17.2.4 `CALL' Statement Syntax
 ------------------------------
 
      CALL SP_NAME([PARAMETER[,...]])
 
 The `CALL' statement invokes a procedure that was defined previously
 with `CREATE PROCEDURE'.
 
 `CALL' can pass back values to its caller using parameters that are
 declared as `OUT' or `INOUT' parameters. It also `returns' the number
 of rows affected, which a client program can obtain at the SQL level by
 calling the `ROW_COUNT()' function and from C by calling the
 `mysql_affected_rows()' C API function.
 
Info Catalog (mysql.info) drop-procedure (mysql.info) stored-procedure-syntax (mysql.info) begin-end
automatically generated byinfo2html