在PHP中插入和从存储过程中选择


Insert and Select from Stored Procedure in PHP

我目前正试图通过PHP执行一个存储过程(两个INSERTS和一个SELECT)。存储过程正常工作(不会引发错误)。这些值甚至被插入到给定的表中。我们将结果存储在JSON对象中,但它返回的是一个空数组。当我们执行只包含SELECT的存储过程时,它会返回正确的值。我们的表中的所有名称都已更改(可能遗漏了一些,但我们的代码正在运行)。有人能解释为什么我们的数组没有填充吗?

这是我们的存储过程

ALTER procedure 
As
BEGIN
INSERT INTO TABLE1
(Loan_ID, Doc_ID, Borrower_Name, Docs_Drawn, Funder, First_Payment, Interest_Rate, Loan_Amount)
Select Loan_ID, 
        (SELECT (COUNT(*)) FROM TABLE WHERE A.Loan_ID = Loan_ID) AS Doc_ID,
        Borrower ,[Date_Docs_Drawn]
      ,[Funder]
      ,[Payment_Date]
      ,[Interest_Rate]
      ,[Loan_Amount] from VIEW A
 INSERT INTO TABLE2
(Loan_ID, Submitted_By, Event_Class, Event_Type, Event_Date, Doc_ID)
SELECT A.[Loan_ID], 
    'Program' AS Submitted_By
    ,'Collateral' AS Event_Class
      , 'Outstanding' AS Event_Type
     , CURRENT_TIMESTAMP AS Event_Date 
     , Doc_ID                                       
  FROM TABLE1 AS A
  WHERE NOT (A.Loan_ID = ANY (SELECT Loan_ID FROM TABLE2))
    SELECT [Loan_ID],[Doc_ID],[Borrower_Name]
      ,[Funder]
      ,[Docs_Drawn]
      ,[First_Payment]
      ,[Loan_Amount]
      ,[Interest_Rate]
    FROM TABLE1
    WHERE Loan_ID <> ALL
    (SELECT Loan_ID FROM TABLE2
    WHERE Event_Type <> 'Outstanding')
    ORDER BY Funder
END

这是我们的PHP 的草图

$query = "exec storedProcedure";
$result=sqlsrv_query($conn, $query);
$table = array();
while($row = sqlsrv_fetch_array($result)) {
    $table[] = $row;
}
echo json_encode($table);

尝试在存储过程中使用SET NOCOUNT ON。您可能受到SQL Server PHP驱动程序返回到PHP的结果的限制,因此您无法从SELECT语句中获取数据。