Posts by Bruno Menezes • 81 points
7 posts
-
0
votes1
answer368
viewsQ: Spring Boot + JPA + Websecurity - How to save User + Profile?
Hello, it’s been a few days that I’m breaking my head to be able to register a user and its role. The information should be recorded in different entities and I can’t make that relationship. I can…
-
0
votes1
answer624
viewsQ: Get values from $request
I would like to take all the values of a certain key of a request. Ex Request:…
-
3
votes1
answer141
viewsQ: Postgresql 9.3 Centos Structure
I would like to know what is and what is part of this directory groundwork. /var/lib/pgsql/9.3/data/base/17500/18037 /var/lib/pgsql/9.3/data/base/17500/18170 /var/lib/pgsql/9.3/data/base/17500/18168…
-
1
votes2
answers198
viewsQ: Semantical Error - Doctrine createQueryBuilder
But once I get caught using Doctrine. I wanted to do it: SELECT c.nm_computador, c.te_ip_computador, log.usuario, log.data FROM computador c INNER JOIN log_user_logado log ON c.id_computador =…
-
0
votes1
answer536
viewsQ: Pick up form value
This is my Twig form. <form id="csv" action="{{ path('faturamento_csv') }}" method="post"> {% for elm, value in filtroLocais %} <input type="hidden" name="{{ elm }}" value="{{ value }}">…
-
0
votes3
answers2325
viewsQ: Order By - Leave specific record for first
Store_Name | Sales | Date America | 1500 | 05-Jan-1999 Boston | 700 | 08-Jan-1999 Canada | 300 | 08-Jan-1999 Dinamarca | 250 | 07-Jan-1999 I have this table, I’d like to sort in a way where Boston…
-
2
votes1
answer113
viewsQ: Format Unix Time to display Data only
Good afternoon, am with a problem where I need to remove the time or set the final time always to 23:59:59 if($form) { $start = new \DateTime($form['startDate']); $start = $start->format('U');…