dalesbred icon indicating copy to clipboard operation
dalesbred copied to clipboard

Dalesbred - a database access library for Java

Results 6 dalesbred issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

Currently there no special assistance for calling stored procedures, but this could probably be made simpler.

enhancement

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...

enhancement

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,...

enhancement