I have installed mydbr on my laptop, SQL server express, linked servers to local MySql and to SQL server remote.
PHP 7.2
IIS 7.0
mydbr 5.0.8
Connected to Sql server express fine. I can write sp as below and connect to linked servers and get data fine when editing sp and htting execute.
But if I hit execute on query tab to run sp I get nothing. Also once I exit edit of sp and go to run report, get nothing. Once I go back to edit my code was not saved for the report.
if object_id('sp_DBR_AgentInquiry','P') is not null
drop procedure sp_DBR_AgentInquiry
go
create procedure sp_DBR_AgentInquiry
as
set Ansi_Nulls on
go
set ansi_warnings on
go
begin
set ansi_nulls on
set ansi_warnings on
select * from openquery(linkedserver,'select code,city from RHP_Report.dbo.producer')
end
go
I have searched and see nothinng wrong on install nor can fnd any menton of ths by anyone else. Shuld I do an update or all new install.