我想运行一个mssql查询,该查询具有用户定义函数的一部分。 这是我的代码:
$connection = $this->em->getConnection();
$sql = 'select * from ssm.table where ip = dbo.fn_ConvertIpAddressToBinary(\'192.168.0.1\')';
$result = $connection->executeQuery($sql);
$results = $result->fetchAll();
var_dump($results);
但是,我得到了一个空白的回复。如果你设置没有功能的请求,一切正常。此查询在sql查询分析器中工作正常。
我该怎么办?