dalesbred
dalesbred copied to clipboard
Dalesbred - a database access library for Java
Because we are using MariaDB which sometimes does not behave that nice but only produces warnings when it actually should throw errors, I'm looking for similar feature that (Spring) JdbcTemplate...
Is there any thought about adding stream support as return option? I understand that for stream to work, Statement and ResultSet must be open and there would be needed some...
Currently there no special assistance for calling stored procedures, but this could probably be made simpler.
I am curious to know if this API can provide interceptor support. I want to execute some piece of code before and after every jdbc query. The support I am...
Consider the following: ```kotlin class Foo(val b: Bar) @JvmInline value class Bar(val x: Int) { init { require(x > 0) } } ``` Since _Bar_ is an inline value class,...