sql

dharrigan 2023-07-13T18:11:30.744979Z

With next.jdbc (and mysql 5.7), anyone know the magic incanation to set RestultType.TYPE_FORWARD_ONLY (I think that is also required along with fetch-size Integer/MIN_VALUE

seancorfield 2023-07-13T18:22:09.766609Z

> :result-type -- a keyword that affects how the ResultSet can be traversed: :forward-only, :scroll-insensitive, :scroll-sensitive,

dharrigan 2023-07-13T18:23:24.577169Z

I'm getting there...

dharrigan 2023-07-13T18:23:35.587749Z

I've been hopping into and out of the source code

dharrigan 2023-07-13T18:23:45.044309Z

and found that too, now trying to weave the magic 🙂

dharrigan 2023-07-13T18:29:18.888859Z

In the docs, it says that if a plan is passed a datasource and if in the datasource the db-spec has those options set (:result-type, fetch-size etc..), then it will be honoured during the plan?