I have a table call Access with 200 thounsand entries and I need get all the data and display it on a map. The schema of the data base is:
long | lat | service
12.00 | 34.33 | 3
133.32 | 32.4213 | 5
-58.3 | -3.3233 | 10
If I try the query:
SELECT long, lat, service FROM Access;
on SQL SERVER Console I get all the data, and works great, but if I try it with this php code:
$result = mssql_query($query) or die('Query Failed ' . mssql_error());
I get nothing. No errors and no data. I increased the memory limit on my php.ini and I set it to 1024M but I'm getting the same output,no errors and no data.
There are any way to get thousands of entries from a data base on a php array? What are I'm doig bad?
Thanks for your help.