Hi

I'm querying a layer with information which works well but doesnt give me
the data in a format I need.

If I use the following I get a list of all my address where the column
c_address contains high street which is superb but I then want to sort the
order by c_ref.

This works to just bring back the results:

$queryOptions = new MgFeatureQueryOptions();
$filterQuery = "c_address LIKE '%high street%'";
$queryOptions->SetFilter($filterQuery); 

Adding ORDER BY c_ref DESC doesnt seem to do anything:

$queryOptions = new MgFeatureQueryOptions();
$filterQuery = "c_address LIKE '%high street%' ORDER BY c_ref DESC";
$queryOptions->SetFilter($filterQuery);  

Is there a way to do an advanced query or am I just missing something
simple?

Thanks
Neil
-- 
View this message in context: 
http://osgeo-org.1803224.n2.nabble.com/Advanced-search-of-layer-using-MgFeatureQueryOptions-not-working-tp4978840p4978840.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
_______________________________________________
mapguide-users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/mapguide-users

Reply via email to