I am trying to do a query but I get the next error:
[Microsoft][SQL Server Native Client 11.0][SQL Server]Información: la condición de búsqueda de texto completo contenía palabras irrelevantes.
Which means something like:
The full-text search had stop words
When I execute the select on the sql server management studio, I don't get that error, only when I execute it from the driver for php.
It is a really easy query:
$query = "select * from table where contains (*,'?')"; $params = array('java and php');
I use sql server 2008 R2