-
Created a workaround for this, but it's far better to be fixed in Sql2o: https://github.com/aaberg/sql2o/issues/314
There is a subtle bug in Sql2o which sometimes misdetects the property type. The …
-
https://github.com/EtnaSoftwareSystems/ormia
```
// MyDAO.java
public interface MyDAO {
@Select("SELECT * FROM person WHERE id = ?)
Person getPersonById(String id);
}
// MyAPP.java
public class …
-
AFAIK Oracle HotSpot can unload JIT-generated code since it become "cold". You must warmup each method just before time measurement.
-
postgreSQL 9.5 (1.5.4 and 1.6.0-RC2)
```
try (Connection connection = getSql2o().open()) {
String sqlCreateTable = "CREATE TABLE servicesql.\"country\"(name character varying(255…
-
any proposed way control this?
ResultSet.getObject and PrepatredStatement.setObject don't enought :(
maybe instead of ResultSet.getObject->Converter.convert->Pojo.setProperty You need something like …
-
@As aanotation not work in custom query. For simple try add @As to id property like "test_id", and then fetch to entity class by "select * ...".
-
Why not create a new release 1.6.1 with recent fixes so it will be seen the project is alive? 😃
-
Following the idea of having some kind of global configuration (issue #157), it would be also nice to set setAutoDeriveColumnNames on a more broad configuration (sql2o instance?).
Since DBs usually …
-
Export made with Conversations 2.12.6+free. openjdk-8,11,17,18,19-jre-headless fail to extract on Ubuntu 22.04 (Trisquel 11). Output for openjdk-19-jre-headlesss looks like this:
```
$ java -jar i…
-
в [лекции ](https://job4j.ru/profile/exercise/187/task-view/939) https://job4j.ru/profile/exercise/187/task-view/939
опечатка
Метод databaseClient создает **экземляр** Sql2o. Подробнее про него *…