Posts by Alex Borges • 21 points
5 posts
-
0
votes1
answer69
viewsA: Firebird JPA returning null values
I found the problem. I was in my connection string, I leaned to a bench and compared to another... I sucked bullet...
-
0
votes1
answer69
viewsQ: Firebird JPA returning null values
When I try to get some record from the bank, some fields come null, although in the table they are not null! Any idea what might be causing this behavior? I’m using Java 8, Hibernate 5.2.4, Jaybird…
-
0
votes2
answers264
viewsA: Java + Firebird connection returning Null
In a test here I was able to simulate this error, and I corrected it like this: ...SMALL.FDB?encoding=ISO8859_1
-
1
votes3
answers68
viewsA: Select on a date and return cannot be null
Try it like this: select case when campo_que_pode_estar_null is null then 'valor retornado se estiver null' else campo_que_pode_estar_null end from tabela With this, even if the field is null, it…
-
1
votes3
answers813
viewsA: How to find Session in Hibernate 5.2.3.Final
In case you haven’t solved... I resolved so: @RequestScoped public Session createEntityManager() { return (Session) this.factory.createEntityManager(); } public void closeEntityManager(@Disposes…