Top "Jdbi" questions

jDBI is an extension library over standard JDBC, to make writing relational database access more convenient (and correct!

Hibernate vs JDBI

I am building a web service using the Dropwizard framework (version 0.7.0). It involves executing some read-only queries to the database, …

java sql hibernate dropwizard jdbi
Using @Transaction in JDBI / Dropwizard application

I hava two jdbi dao like these: public interface dao1 { @Query("insert into table1 ...") findByid(myBean1); } public interface dao2 { @Query("…

java transactions dropwizard jdbi
How to use IN operator with JDBI?

I'm trying to do a IN query using MYSQL JDBI on Dropwizard (not relevant, I assume). @SqlQuery("SELECT id FROM …

java mysql dropwizard jdbi