Is there a direct method to get the all the elements in a row from the ResultSet as String? JDBC
|
|
You may use
And you'll have then as:
etc. If you want to get rid of the columNames:
|
|||||||
|
|
There's not a single method call to do it, but you can use something like this to build a String:
|
|||
|
|
I've got to ask - why would you need something like that? And no, it's not possible - you would need to call
and call Update (based on comment) I don't think (that depends on your JDBC driver and database, really - you'll have to measure to find out) that there is a big difference in data volume between sending data (from DB to your app) by columns vs one concatenated string. In fact, the latter may even be more expensive if you have numbers / dates because they'll likely occupy more bytes formatted as text. |
|||||||||||||||||
|