Posts by Badaro • 215 points
9 posts
-
0
votes3
answers54
viewsA: Problem when consulting the registered position where it shows null value
Rafael, your Cargo class has no attributes and getter methods are returning Null every time. Declare the "id" and "name" attributes in the Job class and update the access methods (getters and…
-
0
votes1
answer278
viewsA: Is it possible to load an angle function after closing another component?
I found the answer to your question in Stackoverflow: ngx-bootstrap modal: How to get a Return value from a modal?. Solution brief: declare a Subject (onClose, for example) in the modal component…
-
0
votes1
answer47
viewsA: Error in Facesconverter with variable type Date
Your method getAsString received a value of the type java.sql.Date and you tried a cast to SimpleEntity. The getAsObject receives in value the date in string form and expects to be returned an…
-
0
votes1
answer199
viewsA: Error Running Test Class
Jessica, I checked in the Selenium jars that the package names start with org.openqa.selenium. Change your Imports to: import org.openqa.selenium.WebDriver; import…
-
0
votes1
answer48
viewsA: Type varchar mysql limit
Rohan, the account considers all columns except the columns of blob and text types. See details in the Mysql documentation: Limits on Table Column Count and Row Size.…
-
1
votes1
answer119
viewsA: Hibernate does not find Hibernate.cfg.xml
The structure of your Eclipse project is a little strange. Whereas it is a Java project with Maven and it was imported as Maven project, it should be like this its tree: Since it is not in this…
-
0
votes1
answer640
viewsA: How to Count With Subquery
If I understood correctly the result you intended to get, the query could be written as follows: select ct.contratante, ct.fase, count(distinct CASE ct.status_alo WHEN 1 THEN ct.cpf ELSE NULL END)…
-
0
votes4
answers288
viewsA: What’s this Join’s syntax error?
I found a problem just like yours no stackoverflow in English. According to the answer, when there are multiple Joins, Access requires the use of parentheses. Documentation of Microsoft support. As…
-
1
votes1
answer100
views