benjamin-dreux

Results 14 comments of benjamin-dreux

Given the way sqlite support boolean, I also assumed that the query the repo will natively return an integer. Which is the case, so I've added a converter with the...

In my case I was using record instead of class for my model Also I was using list repository instead of SQLite repos Maybe any of those are the root...

ListCrudRepository is part of spring data jdbc now https://docs.spring.io/spring-data/commons/docs/current/api/org/springframework/data/repository/ListCrudRepository.html

I tryed and I still see an error in my case. The example you've build is using spring boot 2.7.6. In my cas I'm using 3.3.4 so we use distinct...

In the same spirit I've notied that I can't use LocalDate, since text storage will make something like this ``` SELECT request_deposit_date from file; 1730955600000 ``` Seams like epoch with...

I was using SqlRepository, not at first. What I was missing is the registration of the Converters. Sorry for the false signal. Thanks for you patient and help. Have a...

Using what was show here https://github.com/xmlet/HtmlFlow/issues/116 I assume that i can stop the indentation from appening and my bug will be fixed. Still, i like having indentation for every other...

This feature is still missing in the current version. I don't get why this isn't more prioritised. Sure we have alternative, but what could look as nice as this ```...

It feels weird since my tests only mock calls to my repository. So i'm not expecting to really start sqllite repositories

By not enabling sqlliterepositories the previsouly mentioned eror did not manifest ``` @SpringBootApplication //@EnableSqliteRepositories public class MyApplication { public static void main(String[] args) { SpringApplication.run(MyApplication.class, args); } } ``` So...