Well, I'm starting my studies in java, so I'm a little rough on the possibilities, libraries and other qualities that exist in JAVA
programming. In many doubts I would like to understand if there is any way to get an object of type ResultSet
which in the 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 transform into a JSON format?
Is there a library that does this for me?