i have some troubles working with php+mssql ....
my problem is : 1) call select statement
2) call stored procedure statement
1 and 2 i call one by one......
for example when i am using this method...... (method_1)
===========================================
$result_set1 = $mssqlconnection->EXECUTE(" SIMPLE SELECT STATEMENT_1 ");
$result_set2 = $mssqlconnection->EXECUTE(" SIMPLE SELECT STATEMENT_2 ");
fetching $result_set1;
fetching $result_set2;
method_1 normally works and i can without any problems to fetch the data
but when i'am trying to call select at first and stored procedure i get the error like " fetch on non object "
this method_2 is not working for me
$result_set1 = $mssqlconnection->EXECUTE(" SIMPLE SELECT STATEMENT_1 ");
$result_set2 = $mssqlconnection->EXECUTE("EXECUTE my_STORED PROCEDURE /without I/O params/ ");
fetching $result_set1;
fetching $result_set2;
how to correctly work with mssql stored procedures trought adodb, i was trying to use adodb help about stored procedures but nothing helps,
maybe someone can suggest something ......
thanks