fluent-jdbc
fluent-jdbc copied to clipboard
Java database code without ORM in a pleasant and fluent style
Bumps [h2](https://github.com/h2database/h2database) from 2.1.214 to 2.2.220. Release notes Sourced from h2's releases. Version 2.2.220 Changes since 2.1.214 release: ... (truncated) Commits 66185fb changelog adjustment f3c8222 version and release date 087522b...
Bumps [sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) from 3.39.2.0 to 3.41.2.2. Release notes Sourced from sqlite-jdbc's releases. Release 3.41.2.2 Changelog 🚀 Features jdbc add support for LocalDate, LocalTime, LocalDateTime in ResultSet#getObject (1d2ff63) implement PreparedStatement getParameterType...
https://github.com/jhannes/fluent-jdbc/blob/main/src/main/java/org/fluentjdbc/opt/junit/DbContextRule.java needs to be converted to something like this: ```java public class DbContextExtension extends DbContext implements BeforeEachCallback, AfterEachCallback { val DbContextConnection ignoredConnection // Constructors is bad most likley, need to...
It's useful to be able to add parameters using named fields instead of "?" markers. This reduces confusion around what goes where, better supports duplicated references to same parameter, and...