Viniscius Ribeiro

Results 6 issues of Viniscius Ribeiro

Hello there! I feel that I'm over complicating over, possibly overkilling it... but I need the following operations to be within a transaction: 1. Update parent resource 2. Delete orphan...

question

MySQL ``` String query = "SELECT * FROM table WHERE ST_CONTAINS(GEOMFROMTEXT('POLYGON((:neLon :neLat, :neLon :swLat, :swLon :swLat, :swLon :neLat,:neLon :neLat))'), point)" return database .select(query) .parameter("swLon", swLon) .parameter("swLat", swLat) .parameter("neLon", neLon) .parameter("neLat",...

question

Hello there! I'm getting `java.lang.RuntimeException: onNext called with null. Null values are generally not allowed in 2.x operators and sources.` When the select doesn't have any retuned value (`null`), shouldn't...

question

Is there any support for the SQL IN clause? `Database.test() .select("select score from person where name IN (?)") .parameters("FRED", "JOSEPH") // or a list of Strings .getAs(Integer.class) .blockingForEach(System.out::println);` I tried...

enhancement
question

Are there any plans to migrate to Elm 0.19? Can I use OSM instead of the mapbox provider? Thank you

Hello @msschroe3, Thank you very much for this sample project! I'm running into the issue below when starting up this project `./gradlew bootRun`, no changes at all. Any ideas what...