mssql_execute

(PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1)

mssql_executeExecutes a stored procedure on a MS SQL server database

Warning

This function was REMOVED in PHP 7.0.0.

Alternatives to this function include:

说明

mssql_execute ( resource $stmt [, bool $skip_results = FALSE ] ) : mixed

Executes a stored procedure on a MS SQL server database

参数

stmt

Statement handle obtained with mssql_init().

skip_results

Whenever to skip the results or not.

范例

Example #1 mssql_execute() example

<?php
// Create a new statement
$stmt mssql_init('NewBlogEntry');

// Some data strings
$title 'Test of blogging system';
$content 'If you can read this, then the new system is compatible with MSSQL';

// Bind values
mssql_bind($stmt'@author',    'Felipe Pena',  SQLVARCHAR,     false,  false,   60);
mssql_bind($stmt'@date',      '08/10/2008',   SQLVARCHAR,     false,  false,   20);
mssql_bind($stmt'@title',     $title,         SQLVARCHAR,     false,  false,   60);
mssql_bind($stmt'@content',   $content,       SQLTEXT);

// Execute the statement
mssql_execute($stmt);

// And we can free it like so:
mssql_free_statement($stmt);
?>

注释

Note:

If the stored procedure returns parameters or a return value these will be available after the call to mssql_execute() unless the stored procedure returns more than one result set. In that case use mssql_next_result() to shift through the results. When the last result has been processed the output parameters and return values will be available.

参见

相关文章
php ibm db2 函数 returns a result set listing stored procedure parametersphp ibm db2 函数 returns a result set listing the stored procedures registered in a databasephp ibm db2 函数 returns an object with properties that describe the db2 database serverphp frontbase 函数 start a database on local or remote serverphp frontbase 函数 stop a database on local or remote serverphp firebird/interbase 函数 execute a maintenance command on the database serverphp mssql 函数 adds a parameter to a stored procedure or a remote stored procedurephp mssql 函数 关闭ms sql server链接php mssql 函数 打开ms sql server链接php mssql 函数 executes a stored procedure on a ms sql server databasephp mssql 函数 returns the last message from the serverphp mssql 函数 initializes a stored procedure or a remote stored procedurephp mssql 函数 open persistent ms sql connectionphp mssql 函数 send ms sql queryphp mssql 函数 select ms sql databasephp mysqlnd ms 函数 查询给定的 sql 会发送给 master、slave 还是最后使用的 mysql server 执行。php postgresql 函数 submits a command to the server and waits for the result with the ability to pass parameters separately from the sql command textphp sqlite 函数 executes a result less query against a given databasephp sqlsrv 函数 opens a connection to a microsoft sql server databasephp sdo das relational 函数 executes a given sql query against a relational database and returns the results as a normalised data graph
关注编程学问公众号