39 lines
651 B
PHP
39 lines
651 B
PHP
<?php
|
|
|
|
/**
|
|
* `CALL` statement.
|
|
*
|
|
* @package SqlParser
|
|
* @subpackage Statements
|
|
*/
|
|
namespace SqlParser\Statements;
|
|
|
|
use SqlParser\Statement;
|
|
use SqlParser\Components\FunctionCall;
|
|
|
|
/**
|
|
* `CALL` statement.
|
|
*
|
|
* CALL sp_name([parameter[,...]])
|
|
*
|
|
* or
|
|
*
|
|
* CALL sp_name[()]
|
|
*
|
|
* @category Statements
|
|
* @package SqlParser
|
|
* @subpackage Statements
|
|
* @author Dan Ungureanu <udan1107@gmail.com>
|
|
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
|
|
*/
|
|
class CallStatement extends Statement
|
|
{
|
|
|
|
/**
|
|
* The name of the function and its parameters.
|
|
*
|
|
* @var FunctionCall
|
|
*/
|
|
public $call;
|
|
}
|