Im using PostGIS, GeoServer and OpenLayers, and the thing is that i want to display the geometry result from a query like this:
SELECT ST_Buffer(ST_GeomFromText('POINT(100 100)'), 500);
To perform queries I'm using Java, the line I use to perform a query is the following:
resulset = statement.executeQuery(query);
where resulset is a ResulSet type object, when I convert it to String I get the following:
org.postgresql.jdbc4.Jdbc4ResultSet@163b102
My question is how do I interpret that to display the POLYGON I suppose is in there in a layer? or am I doing something wrong? Hope someone can help me with this question, thanks.
