sql

All things SQL and JDBC...
2020-06-14T21:11:09.243200Z

Is next.jdbc a superset of Clojure.java.jdbc?

seancorfield 2020-06-14T21:30:30.244Z

I consider it the 1.0 release that I was never going to be able to do with c.j.j

Carmine Casciato 2020-06-14T21:33:30.245100Z

is it a bad idea to insert 11k rows into a postgres table with next.jdbc? I am reading values from a json file, and I want to get them into a table.

seancorfield 2020-06-14T21:38:00.246600Z

We have a DB setup script at work that loads about 100k rows into MySQL via JDBC (I can't remember whether that part of our system uses c.j.j or next.jdbc right now). We don't run it very often. I wouldn't say it's necessarily a good idea or a bad idea.

Carmine Casciato 2020-06-14T21:40:53.247100Z

Ok, this is just local work, I was wondering if this sort of batch processing should be avoided.

seancorfield 2020-06-14T21:43:57.247400Z

"it depends" 🙂

Carmine Casciato 2020-06-14T21:45:40.247600Z

of course it does 🙂

Carmine Casciato 2020-06-14T21:46:18.248100Z

I did want to say thanks for your work on this, its very nice to work with full on sql + clojure objects

1😊