Issue executing stored procedure from PHP to a Microsoft SQL SERVER

前端 未结 4 1874
刺人心
刺人心 2021-01-20 17:42

I am using the code igniter framework. And I been trying to execute a stored procedure(no params) I wrote on Microsoft SQL Server 2008 from PHP but i get an error . This sto

4条回答
  •  鱼传尺愫
    2021-01-20 18:12

    I am facing fetch data from sql server stored procedure in codeignitor but finally resolved it.

        $sync= $this->load->database('sync', TRUE);
        $query = $sync->query('PROCEDURE_NAME')->result_array();
        echo '
    ';
        print_r($query);
    

提交回复
热议问题