Vert.x JDBC client mutiny binding and result sets #935
-
Hi all |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In general, databases do not stream. It's especially true when using JDBC. So, the row sets are already in memory. Use java.util.stream is good for that use case. |
Beta Was this translation helpful? Give feedback.
In general, databases do not stream. It's especially true when using JDBC. So, the row sets are already in memory. Use java.util.stream is good for that use case.