Creating another table in dropwizard causing error ?

2016-10-18 Thread ervin . c . wu
I am using your example provided on github, and I want to create another table called LearningAssistants. I followed the example code closely and modify the config.xml to create the LearningAssistants table. However I am getting this error: ERROR [19:49:24.930] [dw-18 - GET /LA]

Re: Complex SQL queries with JDBI

2016-10-18 Thread Tim Bart
Thanks for sharing your approach Douglas, Kim. I was wondering what the most elegant way of making the handle available was when 99% of queries are well supported by the @SqlQuery("…"); On Tuesday, October 18, 2016 at 10:09:38 AM UTC-7, Kim Kantola wrote: > > Thank you so much Evan and Douglas

Re: Complex SQL queries with JDBI

2016-10-18 Thread Kim Kantola
Thank you so much Evan and Douglas for taking the time to help. I did end up going with your approach Douglas, I am using annotated SQL where I can, but for the dynamic queries, I am using the jdbi handle and executing the SQL that way. In case anyone else finds this thread looking for similar