Matthew Hall
Matthew Hall
See jdbi/jdbi#1453 for reference. In JEE container environments like Tomcat or Wildfly, one needs to design applications for so that app-specific threads are stopped and classes may be unloaded, so...
While testing some database persistence, I've found that what I write out to the datastore and what gets read back from it is not always in the same format. Example:...
A recent issue submitted to the project identified a lack of clarity about SQL object mixin interfaces in our site docs. At the point we introduce those interfaces, just under...
[Background context](https://github.com/jdbi/jdbi/pull/1026/files#r169879450). Assuming `Bar` extends `Foo`, the following argument factory will bind an argument of either type: ```java class FooArgumentFactory extends AbstractArgumentFactory { ...} ``` However this next factory will...
Now that the developer guide structure has had a chance to settle, it's a good time to factor it back out into different files by section to make it easier...
Hi. This repository was a popular link on reddit.com/r/java today. At the time you reviewed these frameworks, you used Jdbi 2.77, while Jdbi 3 was still in beta. The most...
Per [Introspector.decapitalize() javadoc](http://docs.oracle.com/javase/8/docs/api/java/beans/Introspector.html#decapitalize-java.lang.String-), the property name for a getter named `getPCode()` is `PCode`, not `pCode` as one might expect. So a bound parameter `:pCode` would not be bound to the...
Wherever possible, convert the literal code examples in the developer guide to real code that gets run during Maven test phase. This will protect against invalid code being published in...