Currently I have a web services that connects to PostgreSQL
using the JDBC
. As of now the query returns as one long string
as it was the only way I could get it to work. I would like to returned queries with column names and then the value so that the result can be parsed and populate a table using ksoap2
for android
. I have tried getting the results as objects
but the return is still one result string
. Any help or tutorials on how to get the query result to return so that it can be parsed would be great. e.g:
anyType=column{value}
Thanks