Steven Schlansker

Results 356 comments of Steven Schlansker

That is very exciting that you got it to work, sounds like there is a lot of progress on this issue! ;) We'd be happy to include the necessary configuration...

I did a spike into this way back in the day. I think the biggest challenge is that interpreting the exceptions is vendor specific, i.e. I could contribute support for...

Some exceptions definitely fall into that category. But JDBC does define a structured exception interface, and you can detect useful cases to handle. We even have an existing use in...

In Postgres, you would do a `insert into ... returning *` and then use the `@GetGeneratedKeys` annotation to retrieve the returned rows (the same as inserted). If your database does...

Hi @ngeor, the MySQL driver ability to extract a LocalDate directly is relatively new and we haven't added built in support yet. We plan to ship mappers out of the...

Unfortunately it does not yet exist. You can cobble together something yourself fairly easily -- I often keep List of column names around and then you can join it together....

Relatedly, `RowMapperFactory` has the same limitation.

I think `geantyref` may provide us sufficient facilities to do this now.

That's not quite the same problem. At runtime, when you write `new ThingFactory(...)` it is erased to `new ThingFactory(...)` and loses the type arguments. Given a `ThingFactory tf = new...

@lucjross, Can you submit a short test case that worked before the change, and fails after? (or at least some copy-and-paste code?) I can try to re-create it from your...