douyan4958 2016-06-14 09:37
浏览 64
已采纳

我找不到一个sqlsrv代码来执行PHP上的多个SQL查询,它们相互影响

Anyone can help me execute this 3 queries on php?

declare @result varchar(24);
 exec usp_UserLogin @aUser = '$_POST[user]', @aPassword = '$_POST[pass]', @aToken = @result out; 
select @result as token;

i need them to run one after each other, because as you can see, they need each other to work properly.

TY Nuno Santos

  • 写回答

2条回答 默认 最新

  • doupuchen6378 2016-06-15 06:12
    关注

    You need to execute one single query that contains those three lines, otherwise you get an error like undefined parameter. Think as you want to execute each of queries on separate SSMS query window.

    Your query will be executed step by step.

    $tsql= "declare @result varchar(24);
            exec usp_UserLogin @aUser = ?, @aPassword = ?, @aToken = @result out; 
            select @result as token;";
    
    $params = array($_POST[user], $_POST[pass]);
    
    $stmt = sqlsrv_query( $conn, $tsql, $params);
    

    If you want to check result of each step(seems unnecessary for this query), you should use transactions like BEGIN TRAN, COMMIT TRAN

    Reference: sqlsrv_query

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算