-
See http://www.sql2o.org/
There is integration with Spring too: http://www.sql2o.org/docs/spring/
-
The "connection.rollback()" has execute,But data still updated.
EG :
```java
public void write() {
try (Connection connection = sql2o.beginTransaction()) {
Query q = conn…
-
Hi,
I saw in the docs that there is no way to force Sql2o to release resources.
What I am experiencing is memory leaks in Tomcat with hot deploy. I'm not sure it's a Sql2o issue, I was just wondering…
-
Class org.sql2o.converters.StringConverter, line 55:
```
return val.toString().trim();
```
This causes any varchar field that has leading or trailing whitespace to be retrieved incorrectly (I no…
-
Hello, author. My English is not very good. Please forgive me here. So feedback with the help of translation program
The problem is that the plugin will report an error when it creates an island af…
-
[ERROR] Throwing
org.sql2o.Sql2oException: Error in executeUpdate, [SQLITE_CONSTRAINT] Abort due to constraint violation (UNIQUE constraint failed: island.islandUniqueId)
at org.sql2o.Quer…
-
I'm getting:
```
java.util.ServiceConfigurationError: org.sql2o.converters.ConvertersProvider: Provider com.github.cybortronik.registry.repository.sql2o.converters.OffsetDateTimeConverter not a subty…
-
Hi, I have this classes:
```
public class Pais implements Serializable {
public void setIdpais(Integer idpais) {
this.idpais = idpais;
}
public Integer getIdpais() {
…
-
https://github.com/aaberg/sql2o/wiki/Integration-with-Spring-Framework
Not quite clear how does the sql2o actualy gets the jdbc connection that is binded to the active transaction?
As far as I k…
-
Has anyone used this library with JAVA 9 and later?
I know that its using com.sun.reflect.* which have been deprecated starting from JAVA 9.