DEV Community

Discussion on: Streaming large queries in Java

Collapse
 
jayaerrabelli profile image
jayaerrabelli • Edited

This is exactly what I was looking for. Thank you so much. What does MyRow and MyRow Wrapper have ? Where can I see full code ?

Collapse
 
chochos profile image
Enrique Zamudio

MyRow is the class of the objects you want to stream. It can be whatever. There's no MyRow Wrapper, but there's a RowMapper implementation that produces MyRow instances from the ResultSet. That's basic JdbcTemplate stuff that's out of the scope of this article.