sql

All things SQL and JDBC...
dangercoder 2021-02-17T12:55:27.116900Z

When using next.jdbc, is builder-function something that can be used when using prepared statments? Could not find that option (im calling a stored procedure from a legacy database)

dangercoder 2021-02-18T08:14:26.118Z

I see, thanks for the explanation Sean 🙂

seancorfield 2021-02-18T17:47:04.118200Z

This is described in the docs but if you have suggestions for making it clearer, let me know -- or open an issue with the suggestions.

1👍
dangercoder 2021-02-17T12:56:38.117Z

was thinking about the option map that can contain a :builder-fn key

seancorfield 2021-02-17T17:38:43.117500Z

The builder only applies to the result set -- after the statement runs: if you aren't building a result set, builder function has no effect (which is why, in plan, if you take the optimized path and avoid building rows, the builder function is not invoked).