-1
Well, I am starting my studies in java, for this reason I am a little raw in the possibility, in libraries and other qualities that exist in programming JAVA
. Inside many doubts I would like to understand if there is any way to catch an object of the type ResultSet
which in this case is the return of a query
done as follows:
ResultSet rs_tbl_CONTROLE_SINCRONISMO = con.query("SELECT * FROM DB_EGLISE.tbl_CONTROLE_SINCRONISMO;");
And turn into a JSON format ?
Is there a library that will do this for me ?
@Marconi my problem is being because I don’t know which tables can return from my SQL, so through this how should I transform to JSON ?
– Renan Rodrigues
I know which tables but I don’t know which fields will return
– Renan Rodrigues
Fields or data?
– Marconi
The data returned
– Renan Rodrigues