Home  >  Article  >  Backend Development  >  PHP如何调用SQLServer2008中的存储过程

PHP如何调用SQLServer2008中的存储过程

WBOY
WBOYOriginal
2016-06-23 14:17:431475browse

PHP SQL Server 存储过程 PHP存储过程

如题,希望给出简单明了的实例代码及说明。

回复讨论(解决方案)

http://hi.baidu.com/lei_com/item/232d6c56b6877e9709be1732
看下这个行不行,网上很多这样的教程。

http://hi.baidu.com/lei_com/item/232d6c56b6877e9709be1732
看下这个行不行,网上很多这样的教程。 这个教程在PHP5.2以下版本应该是可以的,可我用的是PHP5.3.5 ,这个版本不能使用mssql打头的函数。如:mssql_bind

mssql_bind($sp,"@user_name",$user_name,SQLVARCHAR,FALSE,FALSE,30);   mssql_bind($sp,"@password",$password,SQLVARCHAR,FALSE,FALSE,30);   mssql_bind($sp,"@info",$info,SQLVARCHAR,TRUE,FALSE,30); //为存储过程添加一个输出参数   mssql_execute($sp); //执行该存储过程   echo $info; //打印出从存储过程中返回的输出参数值
我将mssql_bind函数改为sqlsrv_bind又用了了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn