PHP에서 MS SQL 저장 프로시저 호출
functiongenerateDocCode(){ $wf_id=self::WORKFLOW_ID; $doc_code=""; $link=mssql_connect($this->cfg->db->params->host,$this->cfg->db->params->username,$this->cfg->db->params->password)ordie("Can'tconnectsqlserver"); mssql_select_db($this->cfg->db->params->dbname,$link)ordie("Selectdatabasefailure"); $stmt=mssql_init("GenerateDocCode",$link)ordie("initializestoredprocedurefailure"); mssql_bind($stmt,"@wf_id",$wf_id,SQLINT4); mssql_bind($stmt,"@doc_code",$doc_code,SQLVARCHAR,true); mssql_execute($stmt,false); //print"DocCodeis:".$doc_code; return$doc_code; }
먼저 mssql_init 문을 호출하여 저장 프로시저를 초기화한 다음 mssql_bind 문을 호출하여 저장 프로시저 매개 변수를 지정하고 마지막으로 mssql_execute를 호출하여 저장 프로시저를 실행합니다. 절차.