Re: JDBC Connection auto-commit?: [ANN] clojure.java.jdbc 0.7.0 Beta 1

2017-07-05 Thread Ralf Schmitt
Sean Corfield writes: > Rather than doing something that requires a dependency on specific JDBC > driver classes, it seems that if an :auto-commit option in the db-spec were > honored by get-connection you would get what you needed: > > (into [] (take 2)

RE: JDBC Connection auto-commit?: [ANN] clojure.java.jdbc 0.7.0 Beta1

2017-07-05 Thread Sean Corfield
Yes, I agree that java.jdbc should not try to cater to various DBs/drivers’ quirks in terms of exactly what incantations you need to murmur in order to achieve a specific behavior. I do believe, however, that it should go out of its way to make sure you can murmur those incantations via

Re: JDBC Connection auto-commit?: [ANN] clojure.java.jdbc 0.7.0 Beta 1

2017-07-05 Thread Luke Burton
I've been meaning to chime in here … My take is that clojure.java.jdbc should not be responsible for providing options to the driver to guarantee streaming lazy results, as much as I understand how convenient that would be for users of the framework. It should of course support passing all of

JDBC Connection auto-commit?: [ANN] clojure.java.jdbc 0.7.0 Beta 1

2017-07-05 Thread Sean Corfield
Rather than doing something that requires a dependency on specific JDBC driver classes, it seems that if an :auto-commit option in the db-spec were honored by get-connection you would get what you needed: (into [] (take 2) (jdbc/reducible-query (assoc config/db :auto-commit false)

Re: [ANN] New Canvas feature for Proto REPL Charts

2017-07-05 Thread Didier
I'm pretty sure you can just drag the pane out left and to the bottom to move it. And you can resize the height by hovering the mouse at the edge. Those questions I think are best answered here: https://discuss.atom.io -- You received this message because you are subscribed to the Google

Re: [ANN] New Canvas feature for Proto REPL Charts

2017-07-05 Thread 'stiffyrabbit jr' via Clojure
You'll let me know if I should be looking elsewhere, before asking here but, can I move and resize panes? Each pane defaults to full-height, shared-width. I would like my repl pane to be a short, full-width pane, across the bottom of my screen. Can I do that and, again, is there a go to place

Re: [ANN] clojure.java.jdbc 0.7.0 Beta 1

2017-07-05 Thread Ralf Schmitt
Sean Corfield writes: >> The required steps to setup streaming are different from database to >> database and I guess they may change with the driver version being used. > > This is really the crux of the problem here – I’m not sure what java.jdbc can > do generically to make